.\"Generated by db2man.xsl. Don't modify this, modify the source. .de Sh \" Subsection .br .if t .Sp .ne 5 .PP \fB\\$1\fR .PP .. .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Ip \" List item .br .ie \\n(.$>=3 .ne \\$3 .el .ne 3 .IP "\\$1" \\$2 .. .TH "GIT-CLONE" 1 "" "" "" .SH NAME git-clone \- Clones a repository. .SH "SYNOPSIS" .nf git\-clone [\-l [\-s]] [\-q] [\-n] [\-o ] [\-u ] [] .fi .SH "DESCRIPTION" Clones a repository into a newly created directory\&. All remote branch heads are copied under $GIT_DIR/refs/heads/, except that the remote master is also copied to origin branch\&. In addition, $GIT_DIR/remotes/origin file is set up to have this line: .nf Pull: master:origin .fi This is to help the typical workflow of working off of the remote master branch\&. Every time git pull without argument is run, the progress on the remote master branch is tracked by copying it into the local origin branch, and merged into the branch you are currently working on\&. Remote branches other than master are also added there to be tracked\&. .SH "OPTIONS" .TP \-\-local, \-l, When the repository to clone from is on a local machine, this flag bypasses normal "git aware" transport mechanism and clones the repository by making a copy of HEAD and everything under objects and refs directories\&. The files under \&.git/objects/ directory are hardlinked to save space when possible\&. .TP \-\-shared, \-s, When the repository to clone is on the local machine, instead of using hard links, automatically setup \&.git/objects/info/alternatives to share the objects with the source repository\&. The resulting repository starts out without any object of its own\&. .TP \-\-quiet, \-q, Operate quietly\&. This flag is passed to "rsync" and "git\-clone\-pack" commands when given\&. .TP \-n No checkout of HEAD is performed after the clone is complete\&. .TP \-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\&. .TP \-\-upload\-pack , \-u , When given, and the repository to clone from is handled by git\-clone\-pack, \-\-exec= is passed to the command to specify non\-default path for the command run on the other end\&. .TP The (possibly remote) repository to clone from\&. It can be any URL git\-fetch supports\&. .TP The name of a new directory to clone into\&. The "humanish" part of the source repository is used if no directory is explicitly given ("repo" for "/path/to/repo\&.git" and "foo" for "host\&.xz:foo/\&.git")\&. Cloning into an existing directory is not allowed\&. .SS "Examples" .TP Clone from upstream .IP $ git clone git://git\&.kernel\&.org/pub/scm/\&.\&.\&./linux\-2\&.6 my2\&.6 $ cd my2\&.6 $ make .TP Make a local clone that borrows from the current directory, without checking things out .IP $ git clone \-l \-s \-n \&. \&.\&./copy $ cd copy $ git show\-branch .SH "AUTHOR" Written by Linus Torvalds .SH "DOCUMENTATION" Documentation by Junio C Hamano and the git\-list \&. .SH "GIT" Part of the \fBgit\fR(7) suite