06月22, 2020

Git拉取其他仓库的某个分支的代码

目标

在A仓库拉取B仓库develop分支的代码到A的本地分支

步骤

1.查看本地已有的远程仓库

git remote // 查看远程仓库的名字 发现只有origin
-v 更加详细的远程仓库说明

2.添加远程仓库

git remote add BName Bgiturl // 添加远程仓库 BName别名 Bgiturl远程的git地址

添加完成后,步骤1就看见BName了

3. 获取B的信息

git fetch BName

4.新增分支

git checkout -b newLocalBranchName BName/xxxxxbranchName

5.merge操作

git checkout dev
git merge newLocalBranchName

6.解决冲突

本文链接:https://587v5.com/post/git拉取其他仓库的某个分支的代码.html

Comments