Skip to content

Command図解

ローカルリポジトリを作成し、mainブランチから作業ブランチを作成し、作業ブランチの変更分をmainブランチにマージするまでの一連のコマンドとコミットやHEADの動作を図解します。

事前準備

  • 以下コマンドを実行し、下記の事前準備を行う。
    • 作業用のディレクトリを作成する。
    • 作業用ディレクトリにローカルリポジトリを作成する。
    • 作業用ディレクトリにサンプルのテキストファイルを用意する。
事前準備...
# 作業用ディレクトリを作成し、ディレクトリに移動する
$ mkdir git-tutorial
$ cd git-tutorial
# リポジトリを作成する
$ git init
# ブランチ名を確認する
$ git branch
* main
# サンプル用のファイルを作成する
$ touch first.txt
  • エディタで作成したサンプルファイルを開き、適当な文字を入力しておく。
first.txt
Hello, world!

git commit (on main)

Terminal window
$ git commit -m "first commit."
[main (root-commit) f366c67] first commit.
1 file changed, 1 insertion(+)
create mode 100644 first.txt

git commit実行時のイメージ

  • コミットハッシュはf366c67
  • git commit実行時の出力ログから1ファイル変更、1行追加されたことがわかる。
  • 現在HEADは、mainブランチの最新コミットf366c67を指している。

git branch

Terminal window
$ git branch fix
# 現在のブランチを確認する
$ git branch
fix
* main

git branch fix実行時のイメージ

  • fixブランチは、mainブランチから作成されたため、現在のfixブランチの最新コミットはmainブランチの最新コミット(f366c67)と同じコミットを指している。

git checkout fix

Terminal window
$ git checkout fix
Switched to branch 'fix'

git checkout fix実行時のイメージ

  • fixブランチへ切り替えるため、HEADがmainブランチからfixブランチを指している。

git commit (on fix)

git checkout main

git merge fix