当前位置:   article > 正文

Git如何清除和保存本地的用户和密码_git如何清除登录信息

git如何清除登录信息

一、配置成全局永久保存

1、配置用户名:username

git config --global user.name “username”

2、配置邮箱:user@email

git config --global user.email “user@email”

3、配置密码(当本地pull或push时提示权限无效的时候,就可以用本命令了)(亲自测试)

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’

转自:

Git保存和清除用户名、密码—HI技术分享 

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

闽ICP备14008679号