Skip to content

Instantly share code, notes, and snippets.

@adrian-cid
Created September 21, 2016 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adrian-cid/f564c4048b4f1733b918992ed6fe18b5 to your computer and use it in GitHub Desktop.
Save adrian-cid/f564c4048b4f1733b918992ed6fe18b5 to your computer and use it in GitHub Desktop.
Tagging a specific previous commit point in git
Use command:
git tag v1.0 ec32d32
Where v1.0 is the tag name and ec32d32 is the commit you want to tag
Once done you can push the tags by:
git push origin --tags
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment