当前位置:   article > 正文

git设置查看清除账户信息_git清空store中的账号

git清空store中的账号
一、配置成全局永久保存
1、配置用户名:username
git config --global user.name “username”
2、配置邮箱:user@email
git config --global user.email “user@email”
3、配置密码
git config --global credential.helper store
该命令会记住密码,执行一次 git pull 或 git push 等需要输入密码的命令,输入一次密码。
4、查看配置
git config --list
5、清除密码
git config --global --unset credential.helper
二、临时保存
1、默认记住15分钟
git config –global credential.helper cache
2、自定义时间
git config credential.helper ‘cache –timeout=3600
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

此总结来自转载

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

闽ICP备14008679号