0

我有一个最近从 master 派生的分支(mainbranch)。

如果git pull origin otherbranch将分支 otherbranch 合并到从 master 派生的 mainbranch 中?

可以使用 Git 合并,但很想知道上面的语句会做什么。

我需要的是将 otherbranch 与主分支合并,而 megre 给出错误

fatal: 'otherbranch' does not point to a commit
4

1 回答 1

1

该命令相当于

git fetch origin otherbranch
git merge FETCH_HEAD

因此将:

  1. otherbranch从远程获取远程分支的历史记录origin(其头部提交暂时保存在FETCH_HEAD)。
  2. origin/otherbranch将(现在在 中FETCH_HEAD)的历史合并到当前签出的分支中。
于 2012-08-07T08:09:35.053 回答