git配置的增删改查
1.用git config —global —add user.name rhc
add表明他有多个这种键值对
能够依据这个键查询这个值git config user.name
也能够用git config —get user.name来查询
通过以上两个命令查询,得出username是add进去的rhc
2.查看配置使用
hxgdeMacBook-Pro:~ hxg$ git config -l
3.删除
hxgdeMacBook-Pro:~ hxg$ git config --global --unset user.emall
再查:
hxgdeMacBook-Pro:~ hxg$ git config -l
credential.helper=osxkeychain
filter.lfs.required=true
filter.lfs.clean=git-lfs clean -- %f
filter.lfs.smudge=git-lfs smudge -- %f
filter.lfs.process=git-lfs filter-process
user.name=hxg
user.email=xxx@qq.com
如果有两个相同的选项如:
user.name=hxg
user.name=hx x xxg
这种则需要在 hxgdeMacBook-Pro:~ hxg$ git config --global --unset user.name后面加rhc