Last active
August 29, 2015 13:56
-
-
Save gep13/8930424 to your computer and use it in GitHub Desktop.
Git Commands
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
# Revert changes to modified files. | |
git reset --hard | |
# Remove all untracked files and directories. | |
git clean -fd |
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
# Remote Branch | |
git push origin --delete <branchName> | |
# Local Branch | |
git branch -D <branchName> |
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 checkout -- . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment