X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=Documentation%2Fgit-clone.txt;h=9ac54c282c3fe5ef9182f2829ef51cf8de8a1475;hb=b4a081b428c607f98c5d0a0eec8d543dc1f2abcd;hp=83f58ae5365f05297a432cbd147c496e9fff8ba1;hpb=8fc66df237afce0b4318657f166b3583831949f3;p=git.git diff --git a/Documentation/git-clone.txt b/Documentation/git-clone.txt index 83f58ae5..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 @@ -74,10 +91,47 @@ OPTIONS for "host.xz:foo/.git"). Cloning into an existing directory is not allowed. +Examples +~~~~~~~~ + +Clone from upstream:: ++ +------------ +$ git clone git://git.kernel.org/pub/scm/.../linux-2.6 my2.6 +$ cd my2.6 +$ make +------------ + + +Make a local clone that borrows from the current directory, without checking things out:: ++ +------------ +$ git clone -l -s -n . ../copy +$ 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 + Documentation -------------- Documentation by Junio C Hamano and the git-list .