git

作者: 小小爱笑 | 来源:发表于2019-03-27 16:48 被阅读0次

配置文件.gitconfig

配置代理,并允许使用不安全的 HTTP 方式

[user]
        name = 
        email = 
[color]
    ui = true
[core]
        editor = vim

[alias]
    co = checkout
    st = status
    br = branch
    ci = commit

[http]
        proxy = http://username:password@proxyhost:port
        sslverify = false
[https]
        proxy = http://username:password@proxyhost:port
            sslverify = false

相关文章

网友评论

      本文标题:git

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