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
#Credentials | |
git config --global user.name "Name Surname" | |
git config --global user.email "[email protected]" #or work email alternative | |
#Editor | |
git config --global core.editor "vim" | |
#Aliases | |
git config --global alias.cm commit | |
git config --global alias.st "status -sb" #simplified git status |