0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

GitHubチーム開発まとめ

Last updated at Posted at 2024-05-28

チーム開発を始める前に…

■ GitHubのトップページから「New」ボタンでプロジェクトを作成。

■ mainブランチにコードを初Pushする

1.Pushしたいフォルダー(ワークツリー)まで移動し、Gitリポジトリに変換する

git.
git init

2.ファイルやディレクトリの追加・変更をインデックスに登録する。

git.
git add .        //すべてのファイルを登録
   or
git add <ファイル指定> //指定したファイルを登録

3.ファイルやディレクトリの追加・変更を、リポジトリにコミット(登録)する。

git.
git commit             //コミットする
    or
git commit -m"コメント" //コメントを同時にセットしながらコミット

4.mainブランチをきる(作る)

git.
git branch -M main

5.リモートレポジトリを作る

git.
git remote add origin <URL>

6.GitHubのmainブランチへPush

git.
git push origin main

→ユーザー名とパスワードの入力が求められた場合パスワードには自身のアクセストークンを入力すること

チーム開発の開始

■ コード改修前にやること

1.準備:ローカル環境にリモートリポジトリからソースを持ってくる

git.
git clone <GitHubで取得したリポジトリのURL>
cd <cloneで生成されたディレクトリ>

2.自分のローカルのブランチを確認する

git.
git branch

3.GitHubでissue(課題)を作成

issueタブ移動後「New issue」からissueを作成

4.issue用のブランチをきる(作る)

git.
git branch <ブランチ名>

5.ブランチに移動

git.
git checkout <ブランチ名>

          ----ソースを改修する----

option

git.
git status //変更したファイルの一覧を確認
git diff   //変更したファイルのソースコードを確認

→変更点に問題がなければコミットします。

■ 改修したソースをコミット

1.ファイルやディレクトリの追加・変更をインデックスに登録する。

git.
git add .        //すべてのファイルを登録
   or
git add <ファイル指定> //指定したファイルを登録

2.ファイルやディレクトリの追加・変更を、リポジトリにコミット(登録)する。

git.
git commit             //コミットする
    or
git commit -m"コメント" //コメントを同時にセットしながらコミット

3.GitHubへPush

git.
git push origin <ブランチ名>
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?