当前位置:   article > 正文

vscode配置git_vscode 单独项目 添加git用户名和密码

vscode 单独项目 添加git用户名和密码

查看已配置信息

git config -l

配置账号密码

git config --global user.name “账号”
git config --global user.email “邮箱”

配置记住账号和密码

设置记住密码(说明:一般默认时长为15分钟)

git config –global credential.helper cache
  • 1

自定义过期时间:

git config credential.helper ‘cache –timeout=3600’

设置为一个小时之后失效
  • 1
  • 2
  • 3

长期存储密码:

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

闽ICP备14008679号