Tag commit in VSCode

Avinash picture Avinash · Jan 3, 2017 · Viewed 17.8k times · Source

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

Answer

Lucas Basquerotto picture Lucas Basquerotto · Aug 7, 2018

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)