Last active
June 21, 2018 08:05
-
-
Save saeedseyfi/f441b158f52f05451ebbf23a39b20d5f to your computer and use it in GitHub Desktop.
My Git Setup
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
# aliases | |
git config --global alias.co checkout | |
git config --global alias.br branch | |
git config --global alias.ci commit | |
git config --global alias.st status | |
git config --global alias.lg 'log --oneline' | |
git config --global alias.last 'log -1 HEAD' | |
# git-completion | |
npm i -g git-completion | |
git-completion install --f ~/.git-completion.bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment