1

I have a remote repo with tag names v3 and v4

$git tag

v3

v4

I created a bundle for this remote repo with..

git bundle create repo.bundle --all 

When updating local repo with bundle information...

git pull 'path_to_bundle' branch_name_in_bundle

$git tag

does not! display

v3

v4

How can I pass tag info to the local repo ?

I tried git bundle create repo.bundle --branches --tags

with no success

Jay
  • 111
  • 10

1 Answers1

1
git fetch --tags 'path_to_bundle'
phd
  • 82,685
  • 13
  • 120
  • 165