当前位置:   article > 正文

【Git】如何进行Git的配置、用户名密码缓存和清除(总结)_清除git config credential.helper store的数据

清除git config credential.helper store的数据

配置Git用户名和邮箱

全局

git config --global user.name "username"
git config --global user.email "useremail@qq.com"
  • 1
  • 2

单个项目

git config user.name "username"
git config user.email "useremail@qq.com"
  • 1
  • 2

清除缓存记录中的用户名和密码

git config --system --unset credential.helper
  • 1

缓存用户名和密码

全局

git config --global credential.helper store        #全局
  • 1

单项目

git config credential.helper store        #单个项目
  • 1

清除git中缓存的用户名和密码

git credential-manager uninstall
#如果电脑是macos提示 git: 'credential-wincred' is not a git command. See 'git --help'
#第一步:
git config --unset-all credential.helper
#第二步:
git config --global credential.helper osxkeychain
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/从前慢现在也慢/article/detail/601485
推荐阅读
相关标签
  

闽ICP备14008679号