Reputation: 33598
A console git client has a git push origin <tag_name>
command for pushing a tag without commit to a remote repository.
What's the equivalent in TortoiseGit GUI?
Upvotes: 33
Views: 18079
Reputation: 34002
In order to push a specific tag just enter the <tag_name>
in the textbox for Local
(it is also possible to select the tag on the RefBrowser after clicking on "▶") and empty the Remote
textbox within the Ref
group.
This will result in git push origin <tag_name>
.
If you want to push all tags at once, you can use the Sync dialog (select "Push tags" on the "Push" drop down) as described in https://stackoverflow.com/a/38838166/3906760.
Upvotes: 29
Reputation: 409
Upvotes: 36