summaryrefslogtreecommitdiffstats
path: root/llvm/docs/GettingStarted.html
diff options
context:
space:
mode:
authorNAKAMURA Takumi <geek4civic@gmail.com>2011-07-20 23:37:51 +0000
committerNAKAMURA Takumi <geek4civic@gmail.com>2011-07-20 23:37:51 +0000
commit72c4af5d66c5a6140028e106785c01ac1c8aafe4 (patch)
tree48790565b90a9566bfcf813dee6f2e585cff23cd /llvm/docs/GettingStarted.html
parenta20cde31e727118ab5dcdd539856d1b5be926af4 (diff)
downloadbcm5719-llvm-72c4af5d66c5a6140028e106785c01ac1c8aafe4.tar.gz
bcm5719-llvm-72c4af5d66c5a6140028e106785c01ac1c8aafe4.zip
docs/GettingStarted.html: Tweak style.
llvm-svn: 135637
Diffstat (limited to 'llvm/docs/GettingStarted.html')
-rw-r--r--llvm/docs/GettingStarted.html10
1 files changed, 5 insertions, 5 deletions
diff --git a/llvm/docs/GettingStarted.html b/llvm/docs/GettingStarted.html
index 5465376db8a..521578422ea 100644
--- a/llvm/docs/GettingStarted.html
+++ b/llvm/docs/GettingStarted.html
@@ -802,13 +802,13 @@ instructions</a> to successfully get and build the LLVM GCC front-end.</p>
now mirrors reflect only <tt>trunk</tt> for each project. You can do the
read-only GIT clone of LLVM via:</p>
-<pre>
+<pre class="doc_code">
git clone http://llvm.org/git/llvm.git
</pre>
<p>If you want to check out clang too, run:</p>
-<pre>
+<pre class="doc_code">
git clone http://llvm.org/git/llvm.git
cd llvm/tools
git clone http://llvm.org/git/clang.git
@@ -817,7 +817,7 @@ git clone http://llvm.org/git/clang.git
<p>To set up clone from which you can submit code using
<tt>git-svn</tt>, run:</p>
-<pre>
+<pre class="doc_code">
git clone http://llvm.org/git/llvm.git
cd llvm
git svn init https://llvm.org/svn/llvm-project/llvm/trunk --username=&lt;username>
@@ -836,7 +836,7 @@ git svn rebase -l
<p>To update this clone without generating git-svn tags that conflict
with the upstream git repo, run:</p>
-<pre>
+<pre class="doc_code">
git fetch && (cd tools/clang && git fetch) # Get matching revisions of both trees.
git checkout master
git svn rebase -l
@@ -856,7 +856,7 @@ branches and <code>dcommit</code>. When that happens, <code>git svn
dcommit</code> stops working, complaining about files with uncommitted
changes. The fix is to rebuild the metadata:</p>
-<pre>
+<pre class="doc_code">
rm -rf .git/svn
git svn rebase -l
</pre>
OpenPOWER on IntegriCloud