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.
在克隆存储库之前,我想列出 master 分支中的所有标签以进行过滤并最终检索所需提交的子集,而无需传输任何其他数据。
是否可以使用git ls-remote列出特定分支中的所有标签?
git ls-remote
git ls-remote可以列出分支、标签或头(分支+标签);它可以列出所有内容或按名称过滤,但不能按提交图过滤,因为它无法访问远程存储库中的提交。
git tag --list --merged <branchName>
会在你已经在本地拥有的 repo 上完成这项工作。对你的案子有帮助吗?
我猜除非你能以某种方式访问远程机器本身。