git 常用命令

31

设置代理

#使用http代理 
git config --global http.proxy http://127.0.0.1:7890
git config --global https.proxy https://127.0.0.1:7890

# 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy

设置远程仓库地址

git remote set-url origin <url>

Fork 同步远程分支

git remote add upstream <原作者项目的URL>

git fetch upstream 

git checkout main

git merge upstream/main