Configuración post install:
-
Set user name and email
git config --global user.name "NAME LASTNAME" git config --global user.email [email protected]
-
Set editor and merge tool
git config --global core.editor "subl -w" git config --global merge.tool meld git config --global --add mergetool.prompt false
-
Set default credentials
git config --global credential.helper cache git config --global credential.username your_user_name
-
Set alias commands
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.last "log -1 HEAD" git config --global alias.unstage "reset HEAD --"
-
Color your prompt