0

我过去(近 7 个月前)已经使用过 phabricator。现在我正在尝试创建一个全新的实例来使用。我只是跟随:

  • 创建了一个 Git 分支
  • 映射到 Phabricator
  • 创建了一些简单的任务
  • 将存储库克隆到我的机器
  • 从 master 创建一个名为 T1 的分支
  • 做了一个差异
  • 审稿人接受了我的差异
  • 从分支 T1 运行弧形土地

当我运行 arc land 时,出现以下错误:

$ arc land
Landing current branch 'T1'.
Switched to branch ←[1mmaster←[m. Updating branch...
Password for 'https://ricardovsilva@bitbucket.org':
Switched back to branch ←[1mT1←[m.
←[1mException←[m
Command failed with error #1!
COMMAND
git pull --ff-only --no-stat

STDOUT
(empty)

STDERR
There is no tracking information for the current branch.
Please specify which branch you want to merge with.
See git-pull(1) for details

    git pull <remote> <branch>

If you wish to set tracking information for this branch you can do so with:

    git branch --set-upstream-to=origin/<branch> master


(Run with `--trace` for a full exception trace.)

我错过了什么?为什么弧土地不工作?弧地命令发生了什么变化?

4

1 回答 1

2

根据错误消息,您的主分支未设置为跟踪远程主分支。

你应该跑git branch --set-upstream-to=origin/master master

于 2015-06-18T19:26:38.973 回答