Алиасы
Получение статуса
git config --global alias.st status
git st
Наглядный лог
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 lg
git lg -p
Настройка пользователя
git config --global user.name "Username"
git config --global user.email "foo@bar.com"
Добавим цвета
git config --global color.branch auto
git config --global color.diff auto
git config --global color.interactive auto
git config --global color.status auto