I am trying to Create a Tag Commit in Git via VSCode. VS code's built in Git has a commit option. But How to create a Tag Commit via VS Code
You can open the Command Palette (Ctrl + Shift + P
) and choose Git: Create Tag
.
Give the tag a name and press Enter
.
To push the tag to the remote server, you can open the Command Palette again and choose Git: Push (Follow Tags)
.
(It seems this is the PR that included the feature: https://github.com/Microsoft/vscode/pull/26999)