diff options
Diffstat (limited to 'docs/GettingStarted.html')
-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 5e1985e..39104df 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> |