X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=Documentation%2Fgit-clone.txt;h=9ac54c282c3fe5ef9182f2829ef51cf8de8a1475;hb=refs%2Ftags%2Fv1.3.0-rc2;hp=8410a6d3814b0daf463a052275466dfa63a820e9;hpb=1e2ccd3abc8f5d96244806f753568493c3e77d4c;p=git.git diff --git a/Documentation/git-clone.txt b/Documentation/git-clone.txt index 8410a6d3..9ac54c28 100644 --- a/Documentation/git-clone.txt +++ b/Documentation/git-clone.txt @@ -3,12 +3,14 @@ git-clone(1) NAME ---- -git-clone - Clones a repository. +git-clone - Clones a repository SYNOPSIS -------- -'git-clone' [-l [-s]] [-q] [-n] [-u ] [] +[verse] +'git-clone' [-l [-s]] [-q] [-n] [--bare] [-o ] [-u ] + [] DESCRIPTION ----------- @@ -56,6 +58,21 @@ 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 + that the shorthand name stored in `remotes/origin` is + not affected, but the local branch name to pull the + remote `master` branch into is. + --upload-pack :: -u :: When given, and the repository to clone from is handled @@ -94,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