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 tag在我的存储库上运行时,它显示
git tag
tag1.0 tag1.1 tag1.2
假设我的存储库有两个分支。我怎么知道tag1.0标签与哪个分支相关?
tag1.0
是的,我知道如果我这样做了git show tag1.0,我可以根据之前的更改来判断这是第一个分支还是第二个分支。但是,我想知道是否存在更直接的方法。如果存在,我需要使用什么命令?
git show tag1.0
你可以做:
git branch --contains tag1.0