summaryrefslogtreecommitdiffstats
path: root/git-clone.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@kernel.org>2010-03-22 01:47:35 +0000
committerJunio C Hamano <junio@kernel.org>2010-03-22 01:47:35 +0000
commit9ccf664de57a05c6417f1fe46f6c6b55322f218c (patch)
tree98e19fbc06782490d2909ed5555b49aed5e83b27 /git-clone.txt
parent0299d92c0447b72142f40f7b12f912d028b61c53 (diff)
downloadgit-htmldocs-9ccf664de57a05c6417f1fe46f6c6b55322f218c.tar.gz
Autogenerated HTML docs for v1.7.0.3-254-g4503b
Diffstat (limited to 'git-clone.txt')
-rw-r--r--git-clone.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/git-clone.txt b/git-clone.txt
index 43cfba0e4..dc7d3d17b 100644
--- a/git-clone.txt
+++ b/git-clone.txt
@@ -187,7 +187,7 @@ include::urls.txt[]
Examples
--------
-Clone from upstream::
+* Clone from upstream:
+
------------
$ git clone git://git.kernel.org/pub/scm/.../linux-2.6 my2.6
@@ -196,7 +196,7 @@ $ make
------------
-Make a local clone that borrows from the current directory, without checking things out::
+* Make a local clone that borrows from the current directory, without checking things out:
+
------------
$ git clone -l -s -n . ../copy
@@ -205,7 +205,7 @@ $ git show-branch
------------
-Clone from upstream while borrowing from an existing local directory::
+* Clone from upstream while borrowing from an existing local directory:
+
------------
$ git clone --reference my2.6 \
@@ -215,14 +215,14 @@ $ cd my2.7
------------
-Create a bare repository to publish your changes to the public::
+* Create a bare repository to publish your changes to the public:
+
------------
$ git clone --bare -l /home/proj/.git /pub/scm/proj.git
------------
-Create a repository on the kernel.org machine that borrows from Linus::
+* Create a repository on the kernel.org machine that borrows from Linus:
+
------------
$ git clone --bare -l -s /pub/scm/.../torvalds/linux-2.6.git \