Git 克隆加速 代理设置
从某些仓库克隆代码巨慢,甚至很容易失败,所以设置代理非常有必要。 设置代理: git config –global https.proxy http://127.0.0.1:1086 git config –global https.proxy https://127.0.0.1:1086 git config –global http.proxy ‘socks5://127.0.0.1:1…
从某些仓库克隆代码巨慢,甚至很容易失败,所以设置代理非常有必要。 设置代理: git config –global https.proxy http://127.0.0.1:1086 git config –global https.proxy https://127.0.0.1:1086 git config –global http.proxy ‘socks5://127.0.0.1:1…
初始化Git仓库: git init 初始化其他目录作为Git仓库: git init otherFile 添加文件命令: git add filename 批量添加文件命令: git commit -a 提交到仓库: git commit -m “提交日志” 推送到服务器: git push https://xxx.xxx.xxx.xxx.git //如果已经配置过仓库路径,可直接push gi…