X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=Documentation%2Fgit-clone.txt;h=684e4bdf69bb7eb8ac80b41ba48298d52e4dcdef;hb=6013f17d8852c4b6365e143422e7a85f88efc492;hp=790b87b231d46d6e9de9d85024b25b49ee225488;hpb=59617ebb746b67921856c00a63f943d43b0abeea;p=git.git diff --git a/Documentation/git-clone.txt b/Documentation/git-clone.txt index 790b87b2..684e4bdf 100644 --- a/Documentation/git-clone.txt +++ b/Documentation/git-clone.txt @@ -9,7 +9,7 @@ git-clone - Clones a repository. SYNOPSIS -------- [verse] -'git-clone' [-l [-s]] [-q] [-n] [-o ] [-u ] +'git-clone' [-l [-s]] [-q] [-n] [--bare] [-o ] [-u ] [] DESCRIPTION @@ -58,6 +58,14 @@ OPTIONS -n:: No checkout of HEAD is performed after the clone is complete. +--bare:: + Make a 'bare' GIT repository. That is, instead of + creating `` and placing the administrative + files in `/.git`, make the `` + 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 :: Instead of using the branch name 'origin' to keep track of the upstream repository, use instead. Note @@ -103,6 +111,22 @@ $ cd copy $ git show-branch ------------ + +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:: ++ +------------ +$ git clone --bare -l -s /pub/scm/.../torvalds/linux-2.6.git \ + /pub/scm/.../me/subsys-2.6.git +------------ + + Author ------ Written by Linus Torvalds