ios 对git config配置的操作方法

2021-05-10  本文已影响0人  90后的晨仔
  1. git config --global --add configName configValue
 例如: `git config --global --add user.name "manongchenzai"`

git config --global --unset configName

 例如:
 git config  --global --unset https.postbuffer
 git config  --global --unset https.sslbackend

git config --global configName configValue

例如:
git config --global user.name "manongchenzai"

查看config列表:git config -l或者git config --global --list

git config --global configName查看具体项

例如:
git config --global user.name
上一篇下一篇

猜你喜欢

热点阅读