1

我有一个带有标签名称 v3 和 v4 的远程仓库

$git tag

v3

v4

我为这个远程仓库创建了一个包。

git bundle create repo.bundle --all 

使用捆绑信息更新本地存储库时...

git pull 'path_to_bundle' branch_name_in_bundle

$git tag

才不是!展示

v3

v4

如何将标签信息传递给本地仓库?

我试过git bundle create repo.bundle --branches --tags

没有成功

4

1 回答 1

1
git fetch --tags 'path_to_bundle'
于 2021-03-17T19:48:38.207 回答