[llvm-commits] [llvm] r135637 - /llvm/trunk/docs/GettingStarted.html

NAKAMURA Takumi geek4civic at gmail.com
Wed Jul 20 16:37:51 PDT 2011


Author: chapuni
Date: Wed Jul 20 18:37:51 2011
New Revision: 135637

URL: http://llvm.org/viewvc/llvm-project?rev=135637&view=rev
Log:
docs/GettingStarted.html: Tweak style.

Modified:
    llvm/trunk/docs/GettingStarted.html

Modified: llvm/trunk/docs/GettingStarted.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/GettingStarted.html?rev=135637&r1=135636&r2=135637&view=diff
==============================================================================
--- llvm/trunk/docs/GettingStarted.html (original)
+++ llvm/trunk/docs/GettingStarted.html Wed Jul 20 18:37:51 2011
@@ -802,13 +802,13 @@
   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 @@
 <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=<username>
@@ -836,7 +836,7 @@
 <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 @@
 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>





More information about the llvm-commits mailing list