美文网首页
解决git上传代码时每次都要输入username & passw

解决git上传代码时每次都要输入username & passw

作者: ZH彪 | 来源:发表于2020-05-22 16:56 被阅读0次

    了解知识

    git config --list:git的config配置项
    git config --global --unset credential.helper:删除某一配置项(credential.helper就是其中一配置项)
    git config --global user.name "zhb":全局添加用户名
    git config --global user.email "19584434@qq.com":全局添加邮箱

    方法1: (前提是拉取 SSH连接方式的项目)

    采用 SSH 连接方式
    前提当然你得有权限将自己主机 id_rsa.pub 加入到 git 账户的 SSH Keys 中

    ssh-keygen -t rsa -C "xxxxx@xxxxx.com" : 生成 sshkey(最开始是没有的,建议生成在c/用户/zh彪)

    image.png

    方法2: (前提是拉取 HTTPS连接方式的项目)

    采用 HTTPS 连接方式
    只要你有仓库访问权限即可

    git config --global credential.helper store:给credential.helpe设置了值就解决了每次上传都要填写用户名和密
    git config --global credential.helper "" 设置为空又要用户名了


    image.png

    相关文章

      网友评论

          本文标题:解决git上传代码时每次都要输入username & passw

          本文链接:https://www.haomeiwen.com/subject/lqvqahtx.html