0

過去にすでにファブリケーターを使用していました (ほぼ 7 か月前)。今、使用するまったく新しいインスタンスを作成しようとしています。私はちょうど次のとおりです:

  • Git ブランチを作成しました
  • Phabricator にマッピング
  • 簡単なタスクを作成しました
  • リポジトリを自分のマシンに複製しました
  • マスターから、T1 と呼ばれる 1 つのブランチが作成されました
  • 差をつけた
  • レビュアーは私の差分を受け入れました
  • ブランチ T1 からアーク ランドを実行

アーク ランドを実行すると、次のエラーが表示されます。

$ 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 に答える