Arcanist is an interface to Phabricator, and provides command-line access to many of its tools
Questions tagged [arcanist]
121 questions
0
votes
1 answer
How to make `arc land` check local and phabricator review are in sync?
Consider the following workflow:
make some changes
git add . && git commit -am 'update 1'
arc diff, now local and phabricator code review are in sync
make some further changes and git commit -a --amend --no-edit
arc land and the local amended…

tgeng
- 1,768
- 2
- 15
- 20
0
votes
1 answer
How to combine arc diff and fastlane?
How to combine arc diff and fastlane?
arc diff requires a message and a description of the commit, but when running the fastlane script, the command line does not allow you to enter a message.
Has anyone tried to combine arcanist phabricator +…
0
votes
0 answers
Phabricator: HEAD detached from dc0f
I'm using Phabricator and Arcanist CLI to attempt to land a diff that has been approved by a code reviewer. Here is the output I see:
arc land
STRATEGY Merging with "squash" strategy, the default strategy.
SOURCE Landing the current branch,…

Sean D
- 3,810
- 11
- 45
- 90
0
votes
1 answer
git - arc diff - and a new project
I'm the sole developer on a project that needs to be code reviewed using Phabricator.
I've been using Git the whole time and everything is checked in and pushed.
I want to do the reviews one module at a time, reviewing the entire project would be…

MattR
- 85
- 3
0
votes
0 answers
Compare a local file with its version on a Phabricator/Arcanist revision
I have a revision I have yet to land and would like to compare the local version of a file and the version associated with the latest Arcanist diff on phabricator.
For that matter, it would be interesting to compare the local file with the version…

rhz
- 960
- 14
- 29
0
votes
0 answers
jshint --version command not be found by proc_open
I have been figuring out the installation of archanist with linters on my Windows 8.2 (64 bit) system. I ran into problem during arc diff, when it said (over git bash, I was using):
EXCEPTION: (PhutilAggregateException) Some linters failed:
-…

Shashish Chandra
- 489
- 2
- 5
- 20
0
votes
1 answer
Failed to decompose multicopy changeset in order to generate diff
I am getting the following error while trying to land diff on the master.
Failed to decompose multicopy changeset in order to generate diff.
Below is Exception details
[2020-03-26 12:06:37] EXCEPTION: (Exception) Failed to decompose multicopy…

Gaurav Jain
- 401
- 6
- 18
0
votes
2 answers
Phabricator installation problem " FATAL ERROR: Unable to load the "Arcanist" library. Put "arcanist/" next to "phabricator/" on disk."
I'm trying to install Phabricator with that documentation: https://websiteforstudents.com/install-phabricator-platform-on-ubuntu-16-04-18-04-with-apache2-mariadb-and-php-7-2
When i use "sudo ./bin/config set mysql.host localhost" command there was a…

bekircem
- 3
- 3
0
votes
1 answer
How to arc diff with only the current commit changes that are depend on other diffs?
I created a stacked diff like this:
master - A - B - C
\
D
All the branches created by arc feature branch_name.
How do I change it to A - B - C - D while at the same time, D only shows it's own change?
Tried Git rebase --onto C…

Cathyyang
- 95
- 2
- 7
0
votes
1 answer
git rebase x run an alias
I'm trying to exec an alias while doing a git rebase -i
pick hash commit_message
x alias_name
The error:
Executing: alias_name
error: cannot run alias_name: No such file or directory
warning: execution failed: alias_name
You can fix the problem,…

T04435
- 12,507
- 5
- 54
- 54
0
votes
1 answer
How to programmatically run arc diff --verbatim if test plan is required
We want to run arc diff using a jenkins job which will put out a diff programmatically.
We can use --verbatim option, but it's complaining about Invalid or missing field "Test Plan". We don't want to disable test plan requirement but arc diff…

Harry Su
- 169
- 4
- 11
0
votes
0 answers
Will file marked as binary in GIT cause problems?
I updated translations recently in a properties file and when I tried running an arc diff it came back saying there was an unknown utf-8 character and that the file would be marked as binary. I only made two changes in the file but found an Umlaut…

sean le roy
- 571
- 1
- 7
- 19
0
votes
0 answers
New revision in Phabricator merging with your previous commits
I am a newbie currently trying to patch bugs in Firefox using Mercurial, Arcanist and Phabricator, but I'm having an on going issue that I can't figure out. Every time I create a new revision, All of the patches from my previous commits attach…

JLAB
- 1
0
votes
2 answers
Arcanist How To Checkout to Specific ID
I'm using phabricator and I see this in my diff in the web app
DIFF | ID |Base
DIFF 30 | 41275 | xyz123
DIFF 31 | 41276 | xyz123
Is there way for me to checkout to what my code as at DIFF 30

Rhs
- 3,188
- 12
- 46
- 84
0
votes
1 answer
arcanist: arc diff takes a lot of time to complete compared to svn diff
I would like to use arcanist to send a differential of the local (uncommitted) changes in my SVN project (thousands of files) to Phabricator for review.
The problem is, when executing arc diff arcanist seems to go through every single file calling…

D T
- 677
- 12
- 23