当前位置:   article > 正文

添加、修改、删除、查看本地git的用户名和邮箱_git删除本地油箱

git删除本地油箱

添加、修改、删除、查看本地git的用户名和邮箱

  1. 添加
git config --global user.name "yourName"
git config --global user.email "your@email.com"
  • 1
  • 2
  1. 修改

覆盖

git config --global user.name "yourName"
git config --global user.email "your@email.com"
  • 1
  • 2

替换

git config --global --replace-all user.name "yourName"
git config --global --replace-all user.email "your@email.com"
  • 1
  • 2
  1. 删除
git config --global --unset user.name "yourName"
git config --global --unset user.email "your@email.com"
  • 1
  • 2
  1. 查看

查看所有

git config --list
  • 1

查看指定信息

git config user.name
git config user.email
  • 1
  • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/787664
推荐阅读
相关标签
  

闽ICP备14008679号