添加新源

#添加源
git remote add local url
#删除源
git remote rm local 
#查看源
git remote -vv

切分支

git checkout --track origin/xxxx
git checkout --track local/xxxx

#创建新分支
git checkout -b xxx

拉分支

git pull origin xxxx

推送分支

git push local xxxx