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