[doc] Add .arcconfig setup to the "how to work with a monorepo" section
authorMehdi Amini <mehdi.amini@apple.com>
Sat, 3 Dec 2016 01:04:40 +0000 (01:04 +0000)
committerMehdi Amini <mehdi.amini@apple.com>
Sat, 3 Dec 2016 01:04:40 +0000 (01:04 +0000)
llvm-svn: 288562

llvm/docs/GettingStarted.rst

index e07c35f..ae1f2c3 100644 (file)
@@ -736,6 +736,17 @@ commited. Note that a current limitation is that `git` does not directly record
 file rename, and thus it is propagated to SVN as a combination of delete-add
 instead of a file rename.
 
+If you are using `arc` to interact with Phabricator, you need to manually put it
+at the root of the checkout:
+
+.. code-block:: console
+
+  % cd $TOP_LEVEL_DIR
+  % cp llvm/.arcconfig ./
+  % mkdir -p .git/info/
+  % echo .arcconfig >> .git/info/exclude
+
+
 Local LLVM Configuration
 ------------------------