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.
我是 GIT 的新手。上周我检查了我的代码到一个标签。我忘记了标签名称,显然代码有问题,所以我想知道我从哪个标签签出。我怎么能找到那个?
您可以使用该git describe命令查找与当前提交关联的“最近”标签:
git describe
git describe --tags
例如,在示例存储库中,这给了我:
testtag-2-g25a38be
这意味着我处于提交状态g25a38be,这是标记之外的两次提交testtag。
g25a38be
testtag