美文网首页
sourcetree 问题汇总

sourcetree 问题汇总

作者: ManThirty | 来源:发表于2018-06-22 17:57 被阅读0次
    一. 每次操作都需要输入密码

    解决方案:

    • 第一种: 在.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
          ```
      
    • 第二种: 设置对所有项目有效
          git config --global credential.helper osxkeychain  #第一次需要输入密码,以后都不需要了,
      

    相关文章

      网友评论

          本文标题:sourcetree 问题汇总

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