应用场景:同步不同服务器下的项目开发进度
查看远程仓库:
git remote -v
添加远程仓库:temp是新的远程仓库名,不能与 master 重名,这样就做好本地与远程的关联了
git remote add temp https://gitee.com/andy88666/git_demo.git
接下来就是,
拉取指定 temp 远程仓库下的代码:
git pull temp develop
推送指定 temp 远程仓库下的代码:
git push temp develop
标签:git,develop,temp,仓库,添加,远程 From: https://www.cnblogs.com/huguo/p/16650406.html