美文网首页GitGit使用
Git Bash 记住用户名密码

Git Bash 记住用户名密码

作者: 慢悠悠地丑小鸭 | 来源:发表于2017-06-30 15:56 被阅读0次

    Git for windows (又名 msysgit)如何记住用户名和密码 : 先创建存储用户名密码的文件 ,在home文件夹,一般是C:\Documents and Settings\Administrator下建立文件git-credentials(windows下不允许直接创建以.开头的文件,所以有一个小技巧:先创建一个文件名叫 )git-credentials

    然后进入 git bash,使用命令:
    mv git-credentials .git-credentials

    用记事本打开这文件输入,如果用户名中有@,那么使用%代替:

    
    例:https://xiaoerlang:654321@github.com
    
    保存,进入 git bash,然后输入:
    
    git config --global credential.helper store```
    
    执行完后去查看 C:\Documents and Settings\Administrator\.gitconfig
     这个文件,发现多了一项: [credential] helper = store
    
    就成功了。
    然后要重开 git bash 窗口,再push就不用输入用户名密码

    相关文章

      网友评论

        本文标题:Git Bash 记住用户名密码

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