-
-
Save tsyber1an/abd58b4163d9d956024486b9ea66b7ab to your computer and use it in GitHub Desktop.
Git
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 color.ui auto | |
git config --global core.editor vim | |
git config --global alias.st status | |
git config --global alias.br branch | |
git config --global alias.co checkout | |
git config --global alias.ci commit | |
git config --global alias.l 'log --color --graph --pretty=oneline --decorate --date=short --abbrev-commit --branches' | |
git config --global alias.ds 'diff --stat' | |
git config --global diff.tool vimdiff | |
git config --global merge.tool vimdiff | |
git config --global difftool.prompt false | |
git config --global alias.dt difftool | |
git config --global alias.mt mergetool |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment