The original blog links: www.aobosir.com/blog/2016/1…


Reference website:

  • Git create tag
  • Git manipulation tags
  • Github for Windows – Adding tags

To label a code base, Github For Windows doesn’t have this button. You will need to open a Git command line window on Github For Windows, or use a command line tool to do this.

 

Git tag -a -m "Description Information" Git push Origin v1.0Copy the code
  • 1
  • 2

Git tag -a v1.0 -m “Description Information” git tag -a v1.0 -m

Git show v1.0Copy the code
  • 1

Git tag -a v1.0 -m “Description Information” git tag -a v1.0 -m “description information”

Git tag - d v1.0Copy the code
  • 1

Please visit: www.aobosir.com/