From e65b7ecab81c7cfa50e2d17487c34e6048e5788f Mon Sep 17 00:00:00 2001 From: NAKAMURA Takumi Date: Wed, 20 Jul 2011 23:37:51 +0000 Subject: [PATCH] docs/GettingStarted.html: Tweak style. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@135637 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/GettingStarted.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/GettingStarted.html b/docs/GettingStarted.html index 5465376db8a..521578422ea 100644 --- a/docs/GettingStarted.html +++ b/docs/GettingStarted.html @@ -802,13 +802,13 @@ instructions to successfully get and build the LLVM GCC front-end.

now mirrors reflect only trunk for each project. You can do the read-only GIT clone of LLVM via:

-
+
 git clone http://llvm.org/git/llvm.git
 

If you want to check out clang too, run:

-
+
 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
 

To set up clone from which you can submit code using git-svn, run:

-
+
 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 @@ git svn rebase -l
 

To update this clone without generating git-svn tags that conflict with the upstream git repo, run:

-
+
 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 dcommit. When that happens, git svn
 dcommit stops working, complaining about files with uncommitted
 changes. The fix is to rebuild the metadata:

-
+
 rm -rf .git/svn
 git svn rebase -l