Published on

git 设置 代理

Authors

    git 设置 代理

    Git 命令行使用代理 VPN - Fany's Blog (fanlumaster.github.io)

    清空代理

    git config --global --unset http.proxy
    git config --global --unset https.proxy
    
    git config --global http.proxy 'http://127.0.0.1:10080'
    git config --global https.proxy 'https://127.0.0.1:10080'
    

    git 设置username email

    使用git config --global设置用户名和邮件_git config --global user.name-CSDN博客