Git: Difference between revisions

From Chorke Wiki
Jump to navigation Jump to search
(Created page with "==Git tag== git tag <tagname> git tag -a v1.4 ==References== * [https://www.atlassian.com/git/tutorials/inspecting-a-repository/git-blame Git Blame vs Git Log] * [https://w...")
 
No edit summary
Line 1: Line 1:
==Git tag==
==Git tag==
git tag -a v1.4 -m "my version 1.4"
  git tag <tagname>
  git tag <tagname>
  git tag -a v1.4
  git tag -a v1.4

Revision as of 01:16, 18 June 2021

Git tag

git tag -a v1.4 -m "my version 1.4"
git tag <tagname>
git tag -a v1.4

References