--global -l # Sets colored output git config --global color.ui auto # Sets converting of LF endings into CRLF git config --global core.autocrlf input # for mac and linux git config --global core.autocrlf auto # for windows # Sets user details git config --global user.name "Markus Hanses" git config --global user.email "[email protected]" Git config
'use the same name on remote' git config --global push.default simple # Deletes local references for deleted remote branches git config --global fetch.prune 1 # Store passwords in MAC OS password manager git config --global credential.helper osxkeychain # Create an alias for an compressed log output git config --global alias.ultimate-log "log --graph --oneline --decorate"