手順

  1. git log –onelineでコミットのハッシュ値を取得
  2. git checkout <ハッシュ値>で特定のコミットまで戻る
  3. git checkout <ブランチ名>でブランチの先頭に戻る

git log –onelineでコミットのハッシュ値を取得

git log --oneline
436fdb9 (HEAD -> main) 3rd commit
b6d1bf1 2nd commit
97fbcee 1st commit

436fdb9, b6d1bf1, 97fbceeが各コミットのハッシュ値

git checkout <ハッシュ値>で特定のコミットまで戻る

2nd commitの状態に戻してみる。

git checkout b6d1bf1
Note: switching to 'b6d1bf1'.

You are in 'detached HEAD' state. You can look around, make experimental
changes and commit them, and you can discard any commits you make in this
state without impacting any branches by switching back to a branch.

If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -c with the switch command. Example:

git switch -c <new-branch-name>

Or undo this operation with:

git switch -

Turn off this advice by setting config variable advice.detachedHead to false

HEAD is now at b6d1bf1 2nd commit

git switch --detached <ハッシュ値>でも同様

git checkout <ブランチ名>でブランチの先頭に戻る

git checkout main
Previous HEAD position was b6d1bf1 2nd commit
Switched to branch 'main'

git switch <ブランチ名>でも同様

使用場面

不具合を発見した場合に、どの時点からどの変更によって発生しているのかを特定したい場面