Is there a way to manage repositories tags in Windows client of Github?
(and if not, how could I do this ?)
Is there a way to manage repositories tags in Windows client of Github?
(and if not, how could I do this ?)
You would still need to open a bash from the "GitHub for Windows" GUI and use the CLI.
git push --tags
git fetch --tags
git tag -a ...
(See git tag
man page)
There was a similar question for GitHub for Mac, and in both cases, the tags namespace (refs/tags
) isn't yet taken into account by the GUI.
Since May 2020, 7+ years later:
"Create and push tags in the latest GitHub Desktop 2.5 release"
With today’s 2.5 release, you can create and view your tags directly from GitHub Desktop. Now when you push to GitHub.com, any tags created in Desktop are automatically included. GitHub Desktop also notifies you when you’ve created tags but haven’t yet pushed them, so you don’t forget to share your latest tag with the rest of the team.
git fetch --tags
, although git pull --tags
may still work (with some complaints). –
Unmarked git pull --tags
to avoid confusion –
Jennee © 2022 - 2024 — McMap. All rights reserved.