Reputation: 1384
I already used phabricator in past (nearly to 7 months ago). Now I'm trying to create a totally new instance to use. I just the follow:
When I run arc land, I'm getting the following error:
$ arc land
Landing current branch 'T1'.
Switched to branch ←[1mmaster←[m. Updating branch...
Password for 'https://[email protected]':
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.)
What I'm missing out? Why arc land is not working? Something changed in arc land command?
Upvotes: 0
Views: 1335
Reputation: 2602
According to the error message, your master branch isn't setup to track the master branch on the remote.
You should run git branch --set-upstream-to=origin/master master
.
Upvotes: 2