GIT----GIT命令⾏简写配置
配置⽂件种类
1. /etc/gitconfig:包含了适⽤于系统所有⽤户和所有项⽬的值 --system【查看 --system 配置项】git config --system -l
2. ~/.gitconfig:只适⽤于当前登录⽤户的配置 --global【查看 --global 配置项】
git config --global -l
3. 位于git项⽬⽬录中的.git/config:适⽤于特定git项⽬的配置–local【查看 --local 配置项】
git config --local -l
配置 --global
1. 常⽤命令简写配置
git config --global alias.st status
git config --global alias.pl pullgit常用指令
git config --global alias.ps push
git config --global alias.ci commit
git config --global alias.lg log
git config -- checkout
git config --global alias.br branch
git config -- merge
2. 直接修改配置⽂件
2.1 查配置⽂件位置
git config --global -e
2.2 打开配置⽂件修改
[alias]
co = checkout
ci = commit
st = status
pl = pull
ps = push
df = diff
lg = log
cp = cherry-pick
ca = commit -a
br = branch
mg = merge
执⾏简写命令效果

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。