給命令設置簡短的別名能夠幫助咱們節省大量時間,並且能夠防止因經常敲錯命令引發的心情浮躁。啥也不說了,直接貼配置:git
git config --global alias.st status git config --global alias.co checkout git config --global alias.ct commit git config --global alias.df diff git config --global alias.br branch
我手比較快,快了就容易打錯,因此我也設置了一個 git
的別名 gti
:bash
# 編輯 .bash_profile,新增一行 alias gti='git' # 使配置生效 source ~/.bash_profile
有時手快,把 git st
敲成了 gti st
,也能 work~code