Skip to content

Instantly share code, notes, and snippets.

@raineorshine
Last active December 22, 2023 15:59
Show Gist options
  • Select an option

  • Save raineorshine/5128563 to your computer and use it in GitHub Desktop.

Select an option

Save raineorshine/5128563 to your computer and use it in GitHub Desktop.
Cheatsheet: git commands
git tag # list available tags
git tag -l v1.4.2.* # search for specific tags
git tag -a v1.4 -m 'version 1.4' # create an annotated tag
git tag -a v1.2 9fceb02 # tag a specific commit (if you forgot)
git show v1.4 # show the tag data of a specific tag
git tag v1.4 # create a lightweight tag
git reset --hard HEAD # reset to latest of current branch
git reset --hard 0c6de32 # reset to specific commit
git clean -f # remove untracked files
@derknorton
Copy link

Excellent, thanks for posting this!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment