我最近开始使用phabricator。我正在使用Arcanist CLI将差异提交给phabricator。直到昨天工作正常,今天每当我尝试创建新版本或更新现有版本时,它都会抛出错误。
这是我用来更新修订版D3
arc diff --update D3
在我发表评论之后,它会抛出以下异常
Linting...
No lint engine configured for this project.
Running unit tests...
No unit test engine is configured for this project.
Usage Exception: No changes found. (Did you specify the wrong commit range?)
你们知道可能出现什么问题吗?
答案 0 :(得分:7)
您没有指定提交范围,如消息所示。
尝试:
arc diff HEAD~ --update D3
其中HEAD~应该是您希望推送到修订版的提交