私がそうするならgit checkout HEAD^
、私はこれを手に入れます:
$ git checkout HEAD^
Note: checking out 'HEAD^'.
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 performing another checkout.
If you want to create a new branch to retain commits you create, you may
do so (now or later) by using -b with the checkout command again. Example:
git checkout -b new_branch_name
HEAD is now at...
$
ベテランのgitユーザーはおそらくこれに非常に精通しています。しかし、私がそうしてもgit checkout HEAD
、何も起こりません:
$ git checkout HEAD
$
現在のブランチの先頭でコミットの「切り離されたHEAD」状態を作成したいと思います。それ、どうやったら出来るの?