How do you give git a name fix?

How do you give git a name fix?

For example, from this Angular JS Tutorial (click "Workspace" Reset Instructions):

git checkout -f step-2

What did they call commit step-2?

+4
source share
2 answers

You wouldn’t use it on your git tagown since it created a light tag (link to the tag for the name of the SHA-1 object of the commit object).

In the case of angular / angular-phonecat, they use:

git tag -m "step-2 angular template with repeater" step2

Adding a comment is enough to make it annotated tags ; they contain the creation date, tagger name and email, tag message, and optional GnuPG signature.

  • .

, step2 - ().

+5

:

git tag step-2 *commit-id*
+6

All Articles