Skip to content

Instantly share code, notes, and snippets.

@mattduggan
Last active August 29, 2015 14:16
Show Gist options
  • Save mattduggan/05255d72e8cccbec7e23 to your computer and use it in GitHub Desktop.
Save mattduggan/05255d72e8cccbec7e23 to your computer and use it in GitHub Desktop.
GitHub Cheatsheet

Tags

create
git tag v0.0.0
git push origin refs/tags/v0.0.0
delete
git tag -d v0.0.0
git push origin :refs/tags/v0.0.0

Remove node_modules from Commit

git rm -r --cached node_modules
git commit -am "Remove node_modules"
git push origin feature-branch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment