SourceTree Win10配置

SourceTree 在Win10系统下很是不友好,要有好几处需要额外配置:

SourceTree Win10配置_第1张图片

 在git中,我们使用git config 命令用来配置git的配置文件,git配置级别主要有以下3类:    

    1、仓库级别 local 【优先级最高】
    2、用户级别 global【优先级次之】
    3、系统级别 system【优先级最低】


    $ git config --global user.name "咚咚锵"
    $ git config --global user.email "[email protected]"
    $ ssh -T [email protected]
    $ git config --global http.sslVerify "false"
    $ git config --global http.postBuffer 2000000000
    $ git config --global http.lowSpeedLimit 0
    $ git config --global http.lowSpeedTime 999999
    $ git config --global -l 查看用户配置

你可能感兴趣的:(管理工具)