gitで上のコミットのIDを参照する方法を教えてください
例えば以下の時
command
1user@Users-MacBook-Pro-70 html % git log 2commit d8327747839819c4a996c9a1a02ab73560f6d031 (HEAD -> master) 3Author: 4Date: Thu Dec 2 22:09:13 2021 +0900 5 6 titleを変更 7 8commit 670295e16a124e820aa45b5d6cc4d514258d3e8a 9Author: 10Date: Thu Dec 2 21:54:47 2021 +0900 11 12 test.textをgitの管理に追加 13
ここで
git reset --hard 670295e16a124e820aa45b5d6cc4d514258d3e8a
で「test.textをgitの管理に追加」のコミットまで戻せはするんですが、その後git logをすると
command
1user@Users-MacBook-Pro-70 html % git log 2commit 670295e16a124e820aa45b5d6cc4d514258d3e8a (HEAD -> master) 3Author: 4Date: Thu Dec 2 21:54:47 2021 +0900 5 6 test.textをgitの管理に追加 7
となってしまい「titleを変更」のコミットにまた戻すにはIdが必要なんですがIdを表示できません。どうしたら表示させられますか?
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。