0

有2台机器,我用。

我已经克隆了一个我正在处理的应用程序的 git 存储库。

在机器 A 上,我克隆了这个 repo,在我创建、提交和远程推送的不同分支上处理了各种功能。

所以远程我现在有 3 个分支,一个是主分支,其余 2 个分支 1,分支 2 是我的功能。

在机器 2 上,我克隆了存储库“主”分支。

我的问题是我如何在我的机器 2 上获得 branch1、branch2 。

这样我也可以从机器 2 提交东西。

提前致谢。

(抱歉英语不好)

4

1 回答 1

3

你可以

git fetch --all
git branch -r # will list all remote branches
git checkout <branch> # notice that the branch name should not have leading 'origin', it is the *local* branch name

git 将创建本地分支来跟踪具有相同名称的远程分支。

还要检查这个

于 2013-06-22T12:38:46.003 回答