12

I recently started using phabricator. I am using the Arcanist CLI to submit the differential to phabricator. It was working fine until yesterday and today it throws an error whenever i am trying to create a new revision or update an existing one.

This is the command i am using to update revision D3

arc diff --update D3

and after i put in the comments, it throws the following exception

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?)

you guys have any idea what might be wrong ?

Amyth
  • 32,527
  • 26
  • 93
  • 135
  • did you ever figure out what was causing this? I have the same issue on a windows box, but have no idea. – veilig Feb 26 '13 at 16:18
  • I do not exactly remember the cause but it was to do something with the `libphutil`'s version mismatch so i installed the correct version and that solved the issue. – Amyth Feb 27 '13 at 07:01
  • cool, thats a good spot to start looking....how/where did you find the `libphutil` version? Mine was pulled down from git when I got arc recently? – veilig Feb 28 '13 at 15:35
  • @Amyth: could you please help me to install Arcanist... I am not able to understand from documentation how to install. Thanks –  Mar 07 '13 at 06:58
  • 12
    This should not have been closed. It is certainly NOT off topic. Very frustrating when you try to get help on SO and people close topics when they shouldn't. – David S Jan 06 '15 at 21:09
  • @DavidS Nominate it for reopen. – chtenb Apr 26 '16 at 13:34
  • still seeing this today ~ when trying merge-back release branch into develop, no idea how to fix, unless turn off code-review completely, disaster ~! – dklt Jan 20 '17 at 03:54

1 Answers1

8

You didn't specify a commit range as the message says.

Try:

arc diff HEAD~ --update D3

Where HEAD~ should be the commits you wish to push to the revision

silen
  • 524
  • 6
  • 5