Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
マスター ブランチに a のタグを付けましたが、マスター ブランチをタグが指すコミットにgit tag -a 1.0.0リセットしたいと思います。reset --hard私の質問。
git tag -a 1.0.0
reset --hard
タグ名を渡すだけで、そのタグ名がgit reset指すコミットにリセットできますgit reset --hard 1.0.0。
git reset
git reset --hard 1.0.0
それでもコミットハッシュが必要な場合は、次のコマンドで取得できます
git show -s --format=%H 1.0.0^{commit}
(git show 1.0.0これも行います。上記はコミット ハッシュのみをダンプします。)
git show 1.0.0