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.
克隆时,我试图从外部存储库中获取所有引用。我之前都导出了它们push --mirror,所以据我所知,外部存储库应该有它们。
push --mirror
如何强制拉所有裁判?
git fetch --tags
应该足以从远程镜像裸仓库中获取所有分支和所有标签。
-t --tags
大多数标签在下载分支头时自动获取,但不指向从被跟踪的分支头可到达的对象的标签将不会被此机制获取。 此标志允许下载所有标签及其关联对象。