Skip to content

Instantly share code, notes, and snippets.

@jsramraj
Created August 25, 2020 11:31
Show Gist options
  • Select an option

  • Save jsramraj/41576444efe3d566bfd41f4666c6d992 to your computer and use it in GitHub Desktop.

Select an option

Save jsramraj/41576444efe3d566bfd41f4666c6d992 to your computer and use it in GitHub Desktop.
Git CheatSheet

List all the tags git tag -l

Delete a tag from the remote git push -d origin 1.0

Delete a tag locally git tag -d 1.0

@rthanga1
Copy link

Reset Local branch to remote branch (force pull)
git fetch origin
git reset --hard origin/develop

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