git教程!!!(全局代理、局部代理)

git教程:

http://10.7.225.106/GitChat/gitchat.html

git 配置代理(全局或局部)

查看git配置:

git config -l

查看全局的配置文件:(在桌面打开的gitbash)

cd ..

code .gitconfig

git config --global http.proxy "http://proxysz.zte.com.cn:80"    //全局代理

git config --global https.proxy "http://proxysz.zte.com.cn:80"

git clone https://github.com/mokedeng/graphql-demo.git test   //clone 一个仓库

cd test/

git config --local user.name mokedeng     // 局部用户名等

git config --local user.name [email protected]

git config http.proxy "http://proxysz.zte.com.cn:80"  // 局部代理

git config https.proxy "http://proxysz.zte.com.cn:80"

code .git/config

cd ..

cd ..

code .gitconfig

删掉全局代理

发布了10 篇原创文章 · 获赞 2 · 访问量 128

猜你喜欢

转载自blog.csdn.net/qfturauyls/article/details/103742702