summaryrefslogtreecommitdiffstats
path: root/git-clone.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2006-01-25 04:37:28 -0800
committerJunio C Hamano <junio@hera.kernel.org>2006-01-25 04:37:28 -0800
commite663a7acb10392380c82054b20e6011650051425 (patch)
treea4bdebd731dee908c5f952c60038ecae0c59cb11 /git-clone.txt
parentc2b0a49075827a4ad2135eb524bc252e7a6ddef9 (diff)
downloadgit-htmldocs-e663a7acb10392380c82054b20e6011650051425.tar.gz
Autogenerated HTML docs for v1.1.4-g9264
Diffstat (limited to 'git-clone.txt')
-rw-r--r--git-clone.txt16
1 files changed, 9 insertions, 7 deletions
diff --git a/git-clone.txt b/git-clone.txt
index 8488202e3..684e4bdf6 100644
--- a/git-clone.txt
+++ b/git-clone.txt
@@ -9,7 +9,7 @@ git-clone - Clones a repository.
SYNOPSIS
--------
[verse]
-'git-clone' [-l [-s]] [-q] [-n] [--naked] [-o <name>] [-u <upload-pack>]
+'git-clone' [-l [-s]] [-q] [-n] [--bare] [-o <name>] [-u <upload-pack>]
<repository> [<directory>]
DESCRIPTION
@@ -58,11 +58,13 @@ OPTIONS
-n::
No checkout of HEAD is performed after the clone is complete.
---naked::
- Make a 'naked' GIT repository. That is, instead of
+--bare::
+ Make a 'bare' GIT repository. That is, instead of
creating `<directory>` and placing the administrative
files in `<directory>/.git`, make the `<directory>`
- itself the `$GIT_DIR`. This implies `-n` option.
+ itself the `$GIT_DIR`. This implies `-n` option. When
+ this option is used, neither the `origin` branch nor the
+ default `remotes/origin` file is created.
-o <name>::
Instead of using the branch name 'origin' to keep track
@@ -110,17 +112,17 @@ $ git show-branch
------------
-Create a naked repository to publish your changes to the public::
+Create a bare repository to publish your changes to the public::
+
------------
-$ git clone --naked -l /home/proj/.git /pub/scm/proj.git
+$ git clone --bare -l /home/proj/.git /pub/scm/proj.git
------------
Create a repository on the kernel.org machine that borrows from Linus::
+
------------
-$ git clone --naked -l -s /pub/scm/.../torvalds/linux-2.6.git \
+$ git clone --bare -l -s /pub/scm/.../torvalds/linux-2.6.git \
/pub/scm/.../me/subsys-2.6.git
------------