Last active
February 19, 2020 07:47
-
-
Save Ation/7cc698384ea0b3b95c410152787c7b05 to your computer and use it in GitHub Desktop.
My git configs
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
#!/bin/bash | |
#common configs | |
#aliases | |
git config --global alias.lg "log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit" | |
git config --global alias.st status | |
git config --global alias.co checkout | |
git config --global alias.su "submodule update --recursive" | |
#other | |
git config --global push.default current | |
# user specific configs | |
git config --global user.name Ation | |
git config --global user.email [email protected] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment