git Alias 设置

git Alias 设置

Git 使用比较多的话可以设置一些命令的 Alias ,简单的说就是用简写代替整个完整的命令。如co 代表 checkout。

Mac下,到根目录

cd ~  

然后

vi .gitconfig  

然后在设置文件最后加入

[alias]
co = checkout
ci = commit
st = status
pl = pull
ps = push
dt = difftool
l = log —stat
cp = cherry-pick
ca = commit -a
b = branch

   
   
   
   

你可能感兴趣的:(git,git,config)