GIT 常用别名设置

log 命令设置别名

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 常用别名设置_第1张图片
1.png
co表示checkout,ci表示commit,br表示branch

git config --global alias.co checkout
git config --global alias.ci commit
git config --global alias.br branch

unstage 把暂存区的修改撤销掉(unstage),重新放回工作区

git config --global alias.unstage 'reset HEAD'

你可能感兴趣的:(GIT 常用别名设置)