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

备注:使用的ssh方式获取远程仓库可以免密拉取

方法1:在.git目录中有个config目录,在路径前配置下用户名和密码即可,如下所示:

[core]
    repositoryformatversion = 0
    filemode = false
    bare = false
    logallrefupdates = true
    symlinks = false
    ignorecase = true
[remote "origin"]
    url = http://账号:'密码'@192.168.10.7:8090/test/Django.git
    fetch = +refs/heads/*:refs/remotes/origin/*
[branch "master"]
    remote = origin
    merge = refs/heads/master

方法2:设置对所有项目有效(推荐使用,一行命令搞定)

打开终端并且输入:
git config --global credential.helper osxkeychain  #第一次需要输入密码,以后都不需要了,



作者:等不来的期待
链接:https://www.jianshu.com/p/e2eca14e1b60
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

你可能感兴趣的:(解决SourceTree每次拉取提交都需要输入密码的问题)