我在尝试降落我的弧形贴片。我是最新的原产地/主人,我的补丁被审查和接受。噬菌体网站上写着:Next Step arc land 'arcpatch-D37'。但是,如果我使用arc patch D37,然后使用arc land,就会遇到问题。
它在拉力时断裂:
Switched back to branch ←[1marcpatch-D37←[m.
[2014-04-29 14:06:50] EXCEPTION: (CommandException) Command failed with error #1
28!
COMMAND
git pull --ff-only --no-stat
STDOUT
(empty)
STDERR
fatal: Not possible to fast-forward, aborting.
at [D:\arcanist\libphutil\src\future\exec\ExecFuture.php:398]我试着先拉,没有问题/冲突。不知道下一步该做什么/试什么。
发布于 2014-04-29 12:29:00
试试这个:
git stash (确保这是您通过git stash list存储的唯一工具)git checkout master (切换到您的master分支)git branch -D arcpatch-D37 (删除旧分支)git reset --hard origin/master (重置当前分支)git pull (更新主分支)arc patch D37 (创建一个新分支)arc land (登陆它!)发布于 2015-10-06 17:33:46
我们的团队开始研究一个新的特性分支,并遇到了同样的错误,试图登陆差异。我们的解决办法是确保正确设置功能分支的上游。
git checkout <branch>git branch --set-upstream-to=origin/<branch>arc landhttps://stackoverflow.com/questions/23364339
复制相似问题