Skip to content

Instantly share code, notes, and snippets.

@learnit-codeit
Created April 26, 2021 17:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save learnit-codeit/1d07ee0382c6a6b87475b70a1fb7f679 to your computer and use it in GitHub Desktop.
Save learnit-codeit/1d07ee0382c6a6b87475b70a1fb7f679 to your computer and use it in GitHub Desktop.
#Creating a new tag
git tag <tagname>
#Creating an annotated tag
git tag -a <tagname>
#Listing git tags
git tag
#pushing a tag to remote
git push origin <tag_name>
#checking out tag
git checkout v1.4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment