欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

为git添加alias,命令缩写

程序员文章站 2022-05-15 17:49:49
...

git一些常用的命令git branch,git pull,git status等,可以为这些常用的命令添加缩写,在~/.gitconfig中添加

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

 

相关标签: 开发工具使用