Git Alias 설정
Alias 설정
// 추가
$ git config --global alias.cm commit
// 삭제
$ git config --global --unset alias.ci
// 목록
$ git config --global --get-regexp alias
Alias 기본 설정 모음
// status
git config --global alias.st
// commit
git config --global alias.cm
// branch
git config --global alias.br
// checkout
git config --global alias.co
// Log Style 설정
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"