diff options
author | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-08-12 07:48:01 +0000 |
---|---|---|
committer | NAKAMURA Takumi <geek4civic@gmail.com> | 2011-08-12 07:48:01 +0000 |
commit | 7a362f4111b3620601acacc9691539a3d1f67b6f (patch) | |
tree | 1838ad7b9db1d8b19cc9bb52f2fc1db31d8e85c7 | |
parent | 24ad111a05b9d0e60a79c4f915bf1bb1d24db40b (diff) |
docs/GettingStarted.html: [Git] Mention branch.master.rebase for the tracking branch.
Thanks to Jeff Yasskin to reword.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@137443 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r-- | docs/GettingStarted.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index 5e1985ef13..39104dff14 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -814,6 +814,19 @@ cd llvm/tools git clone http://llvm.org/git/clang.git </pre> +<p> +Since the upstream repository is in Subversion, you should use +<tt>"git pull --rebase"</tt> +instead of <tt>"git pull"</tt> to avoid generating a non-linear +history in your clone. +To configure <tt>"git pull"</tt> to pass <tt>--rebase</tt> by default +on the master branch, run the following command: +</p> + +<pre class="doc_code"> +git config branch.master.rebase true +</pre> + <h4>For developers to work with git-svn</h4> <div> |