@lily
To add all git tags from another branch, you can follow these steps:
1
|
git checkout <branch-name> |
1
|
git tag --list |
1 2 |
git fetch -all <remote-name> git push --tags |
This will add all the tags from the specified branch to your local repository.