[llvm] r303124 - Fix git command line in the Getting Started guide.

Rui Ueyama via llvm-commits llvm-commits at lists.llvm.org
Mon May 15 15:32:34 PDT 2017


Author: ruiu
Date: Mon May 15 17:32:34 2017
New Revision: 303124

URL: http://llvm.org/viewvc/llvm-project?rev=303124&view=rev
Log:
Fix git command line in the Getting Started guide.

By default, git creates "llvm-project-20170507" directory,
but we want to create "llvm-project" directory.

Modified:
    llvm/trunk/docs/GettingStarted.rst

Modified: llvm/trunk/docs/GettingStarted.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/GettingStarted.rst?rev=303124&r1=303123&r2=303124&view=diff
==============================================================================
--- llvm/trunk/docs/GettingStarted.rst (original)
+++ llvm/trunk/docs/GettingStarted.rst Mon May 15 17:32:34 2017
@@ -706,7 +706,7 @@ To set up a clone of all the llvm projec
 .. code-block:: console
 
   % export TOP_LEVEL_DIR=`pwd`
-  % git clone https://github.com/llvm-project/llvm-project-20170507/
+  % git clone https://github.com/llvm-project/llvm-project-20170507/ llvm-project
   % cd llvm-project
   % git config branch.master.rebase true
 




More information about the llvm-commits mailing list