@[TOC]git 拉取远程分支
git 拉取其他仓库分支
刷新
git init
查看已有远程仓库
git remote
仓库详细
git remote -v
添加远程仓库B进来
b.url b仓库的地址
git remote add b b.url
仓库详细
git remote
git remote -v
如图,我添加的仓库名称是wvp_pro,添加成功
移除远程仓库
删除
git remote rm 仓库名
查看已有远程仓库
git remote
获取仓库详情
git fetch 仓库名
获取之后,建议拉取分支,整合代码
参考地址:文档参考地址