From: Mehdi Amini Date: Sat, 3 Dec 2016 01:04:40 +0000 (+0000) Subject: [doc] Add .arcconfig setup to the "how to work with a monorepo" section X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bb4cc15a59b97f69e172ddd414b74656f6e39813;p=llvm [doc] Add .arcconfig setup to the "how to work with a monorepo" section git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@288562 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/GettingStarted.rst b/docs/GettingStarted.rst index e07c35ff85a..ae1f2c3c65d 100644 --- a/docs/GettingStarted.rst +++ b/docs/GettingStarted.rst @@ -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 ------------------------