diff options
author | Mehdi Amini <mehdi.amini@apple.com> | 2016-12-03 01:04:40 +0000 |
---|---|---|
committer | Mehdi Amini <mehdi.amini@apple.com> | 2016-12-03 01:04:40 +0000 |
commit | 05049bed027cb37ef4afcbc6b280603e767f7971 (patch) | |
tree | d4c565a25dc5ed504f581ee6b2e84ef83c87f855 | |
parent | 1fbb0f6dd9979ae469040b43c9d9262f4430611e (diff) | |
download | bcm5719-llvm-05049bed027cb37ef4afcbc6b280603e767f7971.tar.gz bcm5719-llvm-05049bed027cb37ef4afcbc6b280603e767f7971.zip |
[doc] Add .arcconfig setup to the "how to work with a monorepo" section
llvm-svn: 288562
-rw-r--r-- | llvm/docs/GettingStarted.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/llvm/docs/GettingStarted.rst b/llvm/docs/GettingStarted.rst index e07c35ff85a..ae1f2c3c65d 100644 --- a/llvm/docs/GettingStarted.rst +++ b/llvm/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 ------------------------ |