blob: 773c2f07ff82ae7f919c6b9b3794950ea39d88f2 [file] [log] [blame]
Manuel Klimek81eb88f2012-10-11 19:40:46 +00001.. _Phabricator:
2.. _LLVM's Phabricator: http://llvm-reviews.chandlerc.com
3.. _Code Repository Browser: http://llvm-reviews.chandlerc.com/diffusion/
4.. _Arcanist Quick Start: http://www.phabricator.com/docs/phabricator/article/Arcanist_Quick_Start.html
5.. _Arcanist User Guide: http://www.phabricator.com/docs/phabricator/article/Arcanist_User_Guide.html
6
7
8=============================
9Code Reviews with Phabricator
10=============================
11
12.. contents::
13 :local:
14
15If you prefer to use a web user interface for code reviews,
16you can now submit your patches for Clang and LLVM at
17`LLVM's Phabricator`_.
18
19Sign up
20-------
21
22Sign up with one of the supported OAuth account types. If
23you use your Subversion user name as Phabricator user name,
24Phabricator will automatically connect your submits to your
25Phabricator user in the `Code Repository Browser`_.
26
27
28Requesting a review via the command line
29----------------------------------------
30
31Phabricator has a tool called *Arcanist* to upload patches from
32the command line. To get you set up, follow the
33`Arcanist Quick Start`_ instructions.
34
35You can learn more about how to use arc to interact with
36Phabricator in the `Arcanist User Guide`_.
37
38Requesting a review via the web interface
39-----------------------------------------
40
41The tool to create and review patches in Phabricator is called
42*Differential*.
43
44Note that you can upload patches created through various diff tools,
45including git and svn. To make reviews easier, please always include
46**as much context as possible** with your diff! Don't worry, Phabricator
47will automatically send a diff with a smaller context in the review
48email, but having the full file in the web interface will help the
49reviewer understand your code.
50
51To get a full diff, use one of the following commands (or just use Arcanist
52to upload your patch):
53
54* git diff -U999999 other-branch
55* svn diff --diff-cmd=diff -x -U999999
56
57To upload a new patch:
58
59* Click *Differential*.
60* Click *Create Revision*.
61* Paste the text diff or upload the patch file.
62 Note that TODO
63* Leave the drop down on *Create a new Revision...* and click *Continue*.
64* Enter a descriptive title and summary; add reviewers and mailing
65 lists that you want to be included in the review. If your patch is
66 for LLVM, cc llvm-commits; if your patch is for Clang, cc cfe-commits.
67* Click *Save*.
68
69To submit an updated patch:
70
71* Click *Differential*.
72* Click *Create Revision*.
73* Paste the updated diff.
74* Select the review you want to from the *Attach To* dropdown and click
75 *Continue*.
76* Click *Save*.
77
78Reviewing code with Phabricator
79-------------------------------
80
81Phabricator allows you to add inline comments as well as overall comments
82to a revision. To add an inline comment, select the lines of code you want
83to comment on by clicking and dragging the line numbers in the diff pane.
84
85You can add overall comments or submit your comments at the bottom of the page.
86
87Phabricator has many useful features, for example allowing you to select
88diffs between different versions of the patch as it was reviewed in the
89*Revision Update History*. Most features are self descriptive - explore, and
90if you have a question, drop by on #llvm in IRC to get help.
91
92Status
93------
94
95Currently, we're testing Phabricator for use with Clang/LLVM. Please let us
96know whether you like it and what could be improved!