Skip to main content
  1. Learn center
  2. Software Development
  3. Guides
  4. Git tutorial
  5. Git commands & settings
  6. Tag commands
GuidesSoftware DevelopmentBacklog
Git

Project and code management together.

Tag commands


Show list of tags

$ git tag

Adding the -n option will show the annotations on each tag.

Create tag

$ git tag <tagname>

See:

Create tag with message

$ git tag -a <tagname>

Delete tag

$ git tag -d <tagname>

See:

Subscribe to our newsletter

Learn with Nulab to bring your best ideas to life