Git —— 常用的别名

| 原创 | notes

进入你的代码仓库(repositary),vi .git/config

添加以下代码段

[alias]
        co = checkout
        ci = commit -m
        br = branch
        st = status
        lg = log --color --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit
        last = log -1
        unstage = reset HEAD

:wq 退出 vim 界面后,同时尝试运行 git st 或者 git lg 来查看命令别名的配置效果。