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.
我正在一个分支上工作。
我已经达到了“到目前为止工作”的程度。
我想用标签清楚地标记我当前的状态,例如“ok_so_far”。
因此,当我继续并且如果(...好的时候)我搞砸了,我可以很容易地回到这一点。
我知道我可以参考 SHA,但我想知道如何在当前点放置标签(我猜有点像发布标签),以便非常清楚要回到哪一点,并希望引用人类可读的标签与 SHA 相对。
您正在寻找一个标签:
git tag ok_so_far
然后,您可以使用该名称ok_so_far代替 SHA1 提交标识符。
ok_so_far
另一种可能的解决方案是note。