git捆绑不动'git tag'信息
git bundle not moving 'git tag' information
我有一个带有标签名称 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
没有成功
git fetch --tags 'path_to_bundle'
我有一个带有标签名称 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
没有成功
git fetch --tags 'path_to_bundle'