目的
この記事では、Gitにおける状態管理の概念と基本操作について説明する。
項目説明
状態管理の概念
-
ワーキングツリー(working tree)
現在チェックアウトしているローカルディレクトリを指す。
実際に修正、追加、削除を行う作業場所のこと。 -
インデックス / ステージ(index / staging area)
commit
前にワーキングツリー(working tree)の変更を一時的に保存する場所。
変更がindexとして表示される。
commit
準備ができた変更をステージ(staging area)に移動してcommit
対象を管理する。 -
ローカルリポジトリ(local repository)
ローカルマシン上にある個別リポジトリ。
commit
されたすべての履歴やバージョンが保存される場所。
branch
単位のpush
によってcommit
をリモートリポジトリ(remote repository)に反映する。 -
リモートリポジトリ(remote repository)
ネットワーク上にある共有リポジトリ。
通常は、GitHubやGitLabなどのホスティングサービス上に存在する。
[git status] : ステータス確認
-
確認用に
touch
でファイルを新規作成$ touch example-src.txt
-
git status
でステータス確認
Untracked files
に表示されるファイル達は、Git管理下にないファイルが表示される。
上記で新規作成したexample-src.txt
がバージョン管理下にないためgit add
を促す警告が表示されている。
$ git status On branch master No commits yet Untracked files: (use "git add ..." to include in what will be committed) example-src.txt nothing added to commit but untracked files present (use "git add" to track)
-
git status
のその他使用例$ git status [FILE] # ファイルパス指定 $ git status [DIR] # ディレクトリ指定
[git add] : インデックスへ反映
-
前項の警告に従い
git add
を実行
git add
により、変更がワーキングツリーからインデックスへ反映される。
$ git add example-src.txt
-
ステータス確認
$ git status On branch master No commits yet Changes to be committed: (use "git rm --cached ..." to unstage) new file: example-src.txt
-
git add
のその他使用例$ git add [FILE] # ファイルパス指定 $ git add [FILE1] [FILE2] [FILE3] .... # ファイル複数指定 $ git add [DIR] # ディレクトリ指定 git add [DIR1] [DIR2] [DIR3] .... # ディレクトリ複数指定 git add . # カレントディレクト以下すべてを追加する git add -A # Git管理内のすべての変更する (--allと同じ) git add --all # Git管理内のすべての変更する (--Aと同じ) git add -u # Git管理内で変更があったファイルをすべて追加する (--updateと同じ) git add --update # Git管理内で変更があったファイルをすべて追加する (--uと同じ) git add -f # .gitignoreにある管理対象外に設定したファイルも強制的に追加する(.-forceと同じ) git add --force # .gitignoreにある管理対象外に設定したファイルも強制的に追加る (-と同) git add -p # Git管理内のすべてのファイルを対象に対話形式 (Y or N)で追加す(--patchとじ) git add --patch # Git管理内のすべてのファイルを対象に対話形式 (Y or N)で追加る (-同じ) git add -n # addコマンド実行後のどういった結果になるか確認できる (--dry-rn同じ) $ git add --dry-run # addコマンド実行後のどういった結果になるか確認できる (-nとじ)
[git commit] : ローカルリポジトリへ反映
-
上記の変更をメッセージ付きでコミット
git commit
により、変更がインデックスからローカルリポジトリへ反映される。
$ git commit -m 'Add example-src.txt' [master (root-commit) 304a1cd] Add example-src.txt Committer: root Your name and email address were configured automatically based on your username and hostname. Please check that they are accurate. You can suppress this message by setting them explicitly. Run the following command and follow the instructions in your editor to edit your configuration file: git config --global --edit After doing this, you may fix the identity used for this commit with: git commit --amend --reset-author 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 example-src.txt
-
git commit
のその他使用例$ git commit -m "コミットメッセージ" # コミットメッセージを指定 $ git commit --amend # 直前のコミットを上書き $ git commit [FILE] # ファイルパス指定
[git diff] : 差分確認
-
コミット後の編集
ファイルを編集後、再度ステータス確認を行うと下記の通り、コミット後に編集があったことを示すmodified: example-src.txt
が表示されるようになる。$ echo "test input" > example-src.txt $ git status On branch master Changes not staged for commit: (use "git add ..." to update what will be committed) (use "git checkout -- ..." to discard changes in working directory) modified: example-src.txt no changes added to commit (use "git add" and/or "git commit -a")
-
git diff
で差分確認
差分結果としてtest input
が追記されていることが分かる。$ git diff diff --git a/example-src.txt b/example-src.txt index e69de29..c2cbb36 100644 --- a/example-src.txt +++ b/example-src.txt @@ -0,0 +1 @@ +test input
-
git diff
のその他使用例$ git diff HEAD # 最新コミットとの差分確認 $ git diff --cached # HEADとインデックスの差分確認 $ git diff --name-only # 差分が発生しているファイル名の一覧を表示する $ git diff HEAD^ HEAD # 直前のコミット内容を確認 $ git diff show # HEADのコミット内容を確認
[git reset] : コミットの取り消し
-
最新コミット(HEAD)だけを取り消し、ワーキングツリーはそのまま
git reset --soft HEAD~1
-
最新コミット(HEAD)だけを取り消し、変更をステージから外す
git reset --mixed HEAD~1
-
最新のコミット(HEAD)だけを取り消し、HEADの位置、インデックス / ステージ、ワーキングツリーも全て取り消す
git reset --hard HEAD~1
[git push] : リモートリポジトリへ反映
-
新規ブランチをリモートリポジトリに反映し、追跡を設定
ローカルのfeature/new-feature
をリモートリポジトリのorigin
に作成し、-u(--set-upstream)
オプションの指定によって、ローカルリポジトリとリモートリポジトリが紐付けられるため、次回以降はgit push
のみでpush可能となる。
git push -u origin feature/new-feature
-
特定のリモートブランチを指定してリモートリポジトリへ反映
ローカルのdevelop
ブランチをリモートリポジトリのorigin
に反映する。git push origin develop
-
リモートリポジトリから特定のブランチを削除
ローカルのdevelop
ブランチをリモートリポジトリのorigin
に反映する。git push origin --delete branch_name
[git pull] : リモートリポジトリの変更を取込む
- リモートリポジトリの変更をローカルリポジトリに取り込む(リモートとブランチを明示的に指定)
git pull
は、git fetch
とgit merge
の操作をまとめて行っている。
git pull origin main
[git checkout] : チェックアウト
-
ブランチの切り替え
developブランチに切り替る。git checkout develop
-
新規ブランチ作成と切り替え
新規ブランチを作成し、同時にそのブランチに切り替える。git checkout -b feature/develop-1
-
特定のコミットをチェックアウト
コミットハッシュを指定し、ワーキングツリーを特定のコミットに変更する。
git checkout a1b2c3d