使用所有参考克隆 git 存储库

发布于 2024-09-10 13:44:14 字数 104 浏览 8 评论 0原文

我试图在克隆时从外部存储库获取所有引用。我之前通过 push --mirror 导出了它们,所以据我所知,外部存储库应该有它们。

如何强制拉动所有裁判?

I'm trying to get all refs from an external repository when cloning. I exported them all before, by doing push --mirror, so the external repository should have them, as far as I know.

How can I force all refs to be pulled?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如何视而不见 2024-09-17 13:44:14
git fetch --tags

应该足以从远程镜像裸仓库获取所有分支和所有标签。

-t
--tags

大多数标签会在下载分支头时自动获取,但是此机制不会获取未指向正在跟踪的分支头可到达的对象的标签
此标志允许下载所有标签及其关联对象。

git fetch --tags

should be enough to get all branches, and all tags from your remote mirror bare repo.

-t
--tags

Most of the tags are fetched automatically as branch heads are downloaded, but tags that do not point at objects reachable from the branch heads that are being tracked will not be fetched by this mechanism.
This flag lets all tags and their associated objects be downloaded.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文