Created
December 18, 2014 09:46
-
-
Save zenoyu/994980ffe7b0433ab984 to your computer and use it in GitHub Desktop.
Useful Git Commands
This file contains hidden or 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 config --global user.email "[email protected]" | |
git config --global user.name "USER" | |
For those with cntlm: | |
git config --global http.proxy http://127.0.0.1:3128 | |
git config --global https.proxy https://127.0.0.1:3128 | |
Useful Aliases | |
git config --global alias.st 'status -s' | |
> git st | |
git config --global alias.ci 'commit -v' | |
> git ci | |
git config --global alias.co 'checkout' | |
> git co | |
git config --global alias.ll 'log --oneline --decorate --graph --all' | |
> git ll |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment