美文网首页
解决SourceTree 每次拉取提交都需要输入密码

解决SourceTree 每次拉取提交都需要输入密码

作者: izsm | 来源:发表于2018-08-26 00:19 被阅读0次

    终端cd到项目目录,然后执行:

    git config –global credential.helper osxkeychain
    

    如果不能执行,请先安装:

    $ git credential-osxkeychain
    # Test for the cred helper
      git: 'credential-osxkeychain' is not a git command. See 'git --help'.
    $ curl -s -O \
      https://github-media-downloads.s3.amazonaws.com/osx/git-credential-osxkeychain
    # Download the helper
     
    $ chmod u+x git-credential-osxkeychain
    # Fix the permissions on the file so it can be run
     
     
    $ sudo mv git-credential-osxkeychain \
      "$(dirname $(which git))/git-credential-osxkeychain"
    # Move the helper to the path where git is installed
      Password: [enter your password]
     
    $  git config --global credential.helper osxkeychain
    # Set git to use the osxkeychain credential helper
    

    参考:https://blog.csdn.net/ssrrxx111/article/details/51384189

    相关文章

      网友评论

          本文标题:解决SourceTree 每次拉取提交都需要输入密码

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