Hello?
What is the shorcut or way to do this command?
git push --force --tags
Or a way to sync local tags with remote/origin?
Thanks!
Hello?
What is the shorcut or way to do this command?
git push --force --tags
Or a way to sync local tags with remote/origin?
Thanks!
Hi @netinho,
Currently this operation isn’t officially supported, though you can definitely add this as a custom command.
You can do the following:
Preferences > Browse Packages...
Tag Section.sublime-menu
[
{
"caption": "Force Push All Tags",
"command": "git", "args":
{
"argv": ["push", "--force", "--tags"],
}
},
]
Tags
list item in the locations bar, and select “Force Push All Tags”.I hope this helps! Let me know how you go.
Kind regards,
- Dylan