Last active
August 29, 2015 14:02
-
-
Save AlexArchive/014903d17e2192a19f8c to your computer and use it in GitHub Desktop.
Git Cheat Sheet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git remote -v #output remotes | |
git remote rm REMOTENAME #remove remote | |
git diff #diff for unstaged files | |
git diff --staged #diff for staged files | |
git diff --cached #diff for staged files | |
rm -rf .git #delete Git directory |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment