Created
January 16, 2021 23:37
-
-
Save ceme/71f80a36616e0bb84d16df51b21122d5 to your computer and use it in GitHub Desktop.
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 config --global core.editor vim && | |
git config --global color.ui true && | |
git config --global core.autocrlf input && | |
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.up rebase && | |
git config --global alias.ci commit && | |
git config --global alias.upstream "remote add upstream" && | |
git config --global alias.lol "log --oneline --graph --decorate --all" && | |
git config --global alias.pu pull && | |
git config --global alias.di diff |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment