git clone 命令行使用代理参数

网上找了一大圈,都是说要 git global config 配置代理后再 git clone ,但是我不想这么麻烦啊,有没有可以直接使用的参数呢

在查看了 git help clone 后,发现可以这样:

git clone --config http.proxy="http://127.0.0.1:7890" https://github.com/****/xxxx.git

这正是我想要的 方便快捷!

你可能感兴趣的:(git clone 命令行使用代理参数)