Create and push tags in GIT

suggest change

Create a tag:

git tag < tagname >

This will create a local tag with the current state of the branch you are on.

git tag tag-name commit-identifier

This will create a local tag with the commit-identifier of the branch you are on.

Push a commit in GIT:

git push origin tag-name
git push origin --tags

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents