socks代理:
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'
如果有问题,可以把单引号去掉试一下,并且将http和https代理都设置上试一下
也可以直接修改~/.gitconfig文件(Windows下一般在当前用户路径下,例如C:\Users\Administrator下的.gitconfig)。
vi ~/.gitconfig
新建或修改这两项配置
[http]
proxy = socks5://127.0.0.1:1080
[https]
proxy = socks5://127.0.0.1:1080
http/https代理
git config --global http.proxy http://127.0.0.1:8080
git config --global https.proxy https://127.0.0.1:8080
然后再git clone等命令就会自动走代理了。
如果要取消代理:
git config --global --unset http.proxy
git config --global --unset https.proxy
这里要说明一下,带参数是临时的,修改配置文件是永久变更,修改后最好重启所有 git bash 保证设置生效。
查看配置信息:
git config -l --global
可以用git config命令来设置,比如可以使用以下命令:git config --global core.maxObjectSize 200k
这将设置git只允许pull文件大小不超过200KB。
如下步骤:1.创建xxx_template文件,其内容为团队制定的Git提交注释规范,如:
Desgraption:
Date:
Author:
2.通过git config命令配置commit_template,如:
git config –global commit.template /d/develop/Git/Git_Home/commit_template
3.设置git commit时填写注释所用的编辑器,如:
git config –global core.editor vi
OK,设置完成,提交使用git commit会出现与下图相似的界面填写好注释才能提交成功:
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)