#添加源 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