2005-07-14 09:08:37 +02:00
|
|
|
git-fetch-pack(1)
|
|
|
|
=================
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2006-03-09 17:24:50 +01:00
|
|
|
git-fetch-pack - Receive missing objects from another repository
|
2005-07-14 09:08:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 04:38:26 +02:00
|
|
|
[verse]
|
2012-10-16 19:20:10 +02:00
|
|
|
'git fetch-pack' [--all] [--quiet|-q] [--keep|-k] [--thin] [--include-tag]
|
2013-05-09 03:16:55 +02:00
|
|
|
[--upload-pack=<git-upload-pack>]
|
|
|
|
[--depth=<n>] [--no-progress]
|
2013-11-08 18:54:05 +01:00
|
|
|
[-v] <repository> [<refs>...]
|
2005-07-14 09:08:37 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2010-01-10 00:33:00 +01:00
|
|
|
Usually you would want to use 'git fetch', which is a
|
2008-06-30 20:56:34 +02:00
|
|
|
higher level wrapper of this command, instead.
|
2007-01-17 22:03:29 +01:00
|
|
|
|
2008-07-03 07:41:41 +02:00
|
|
|
Invokes 'git-upload-pack' on a possibly remote repository
|
2005-07-14 09:08:37 +02:00
|
|
|
and asks it to send objects missing from this repository, to
|
|
|
|
update the named heads. The list of commits available locally
|
docs: don't talk about $GIT_DIR/refs/ everywhere
It is misleading to say that we pull refs from $GIT_DIR/refs/*, because we
may also consult the packed refs mechanism. These days we tend to treat
the "refs hierarchy" as more of an abstract namespace that happens to be
represented as $GIT_DIR/refs. At best, this is a minor inaccuracy, but at
worst it can confuse users who then look in $GIT_DIR/refs and find that it
is missing some of the refs they expected to see.
This patch drops most uses of "$GIT_DIR/refs/*", changing them into just
"refs/*", under the assumption that users can handle the concept of an
abstract refs namespace. There are a few things to note:
- most cases just dropped the $GIT_DIR/ portion. But for cases where
that left _just_ the word "refs", I changed it to "refs/" to help
indicate that it was a hierarchy. I didn't do the same for longer
paths (e.g., "refs/heads" remained, instead of becoming
"refs/heads/").
- in some cases, no change was made, as the text was explicitly about
unpacked refs (e.g., the discussion in git-pack-refs).
- In some cases it made sense instead to note the existence of packed
refs (e.g., in check-ref-format and rev-parse).
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2010-02-18 02:16:20 +01:00
|
|
|
is found out by scanning the local refs/ hierarchy and sent to
|
2008-07-03 07:41:41 +02:00
|
|
|
'git-upload-pack' running on the other end.
|
2005-07-14 09:08:37 +02:00
|
|
|
|
2005-08-12 11:08:29 +02:00
|
|
|
This command degenerates to download everything to complete the
|
|
|
|
asked refs from the remote side when the local side does not
|
|
|
|
have a common ancestor commit.
|
2005-07-14 09:08:37 +02:00
|
|
|
|
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2008-06-08 03:36:09 +02:00
|
|
|
--all::
|
2007-01-19 13:43:00 +01:00
|
|
|
Fetch all remote refs.
|
|
|
|
|
fetch-pack: new --stdin option to read refs from stdin
If a remote repo has too many tags (or branches), cloning it over the
smart HTTP transport can fail because remote-curl.c puts all the refs
from the remote repo on the fetch-pack command line. This can make the
command line longer than the global OS command line limit, causing
fetch-pack to fail.
This is especially a problem on Windows where the command line limit is
orders of magnitude shorter than Linux. There are already real repos out
there that msysGit cannot clone over smart HTTP due to this problem.
Here is an easy way to trigger this problem:
git init too-many-refs
cd too-many-refs
echo bla > bla.txt
git add .
git commit -m test
sha=$(git rev-parse HEAD)
tag=$(perl -e 'print "bla" x 30')
for i in `seq 50000`; do
echo $sha refs/tags/$tag-$i >> .git/packed-refs
done
Then share this repo over the smart HTTP protocol and try cloning it:
$ git clone http://localhost/.../too-many-refs/.git
Cloning into 'too-many-refs'...
fatal: cannot exec 'fetch-pack': Argument list too long
50k tags is obviously an absurd number, but it is required to
demonstrate the problem on Linux because it has a much more generous
command line limit. On Windows the clone fails with as little as 500
tags in the above loop, which is getting uncomfortably close to the
number of tags you might see in real long lived repos.
This is not just theoretical, msysGit is already failing to clone our
company repo due to this. It's a large repo converted from CVS, nearly
10 years of history.
Four possible solutions were discussed on the Git mailing list (in no
particular order):
1) Call fetch-pack multiple times with smaller batches of refs.
This was dismissed as inefficient and inelegant.
2) Add option --refs-fd=$n to pass a an fd from where to read the refs.
This was rejected because inheriting descriptors other than
stdin/stdout/stderr through exec() is apparently problematic on Windows,
plus it would require changes to the run-command API to open extra
pipes.
3) Add option --refs-from=$tmpfile to pass the refs using a temp file.
This was not favored because of the temp file requirement.
4) Add option --stdin to pass the refs on stdin, one per line.
In the end this option was chosen as the most efficient and most
desirable from scripting perspective.
There was however a small complication when using stdin to pass refs to
fetch-pack. The --stateless-rpc option to fetch-pack also uses stdin for
communication with the remote server.
If we are going to sneak refs on stdin line by line, it would have to be
done very carefully in the presence of --stateless-rpc, because when
reading refs line by line we might read ahead too much data into our
buffer and eat some of the remote protocol data which is also coming on
stdin.
One way to solve this would be to refactor get_remote_heads() in
fetch-pack.c to accept a residual buffer from our stdin line parsing
above, but this function is used in several places so other callers
would be burdened by this residual buffer interface even when most of
them don't need it.
In the end we settled on the following solution:
If --stdin is specified without --stateless-rpc, fetch-pack would read
the refs from stdin one per line, in a script friendly format.
However if --stdin is specified together with --stateless-rpc,
fetch-pack would read the refs from stdin in packetized format
(pkt-line) with a flush packet terminating the list of refs. This way we
can read the exact number of bytes that we need from stdin, and then
get_remote_heads() can continue reading from the same fd without losing
a single byte of remote protocol data.
This way the --stdin option only loses generality and scriptability when
used together with --stateless-rpc, which is not easily scriptable
anyway because it also uses pkt-line when talking to the remote server.
Signed-off-by: Ivan Todoroski <grnch@gmx.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-02 17:13:48 +02:00
|
|
|
--stdin::
|
|
|
|
Take the list of refs from stdin, one per line. If there
|
|
|
|
are refs specified on the command line in addition to this
|
|
|
|
option, then the refs from stdin are processed after those
|
|
|
|
on the command line.
|
|
|
|
+
|
|
|
|
If '--stateless-rpc' is specified together with this option then
|
|
|
|
the list of refs must be in packet format (pkt-line). Each ref must
|
|
|
|
be in a separate packet, and the list must end with a flush packet.
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-q::
|
|
|
|
--quiet::
|
2010-01-10 00:33:00 +01:00
|
|
|
Pass '-q' flag to 'git unpack-objects'; this makes the
|
2005-07-14 09:08:37 +02:00
|
|
|
cloning process less verbose.
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-k::
|
|
|
|
--keep::
|
2010-01-10 00:33:00 +01:00
|
|
|
Do not invoke 'git unpack-objects' on received data, but
|
2005-12-15 07:17:38 +01:00
|
|
|
create a single packfile out of it instead, and store it
|
2006-11-01 23:06:23 +01:00
|
|
|
in the object database. If provided twice then the pack is
|
|
|
|
locked against repacking.
|
2005-12-15 07:17:38 +01:00
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
--thin::
|
2010-02-18 10:10:28 +01:00
|
|
|
Fetch a "thin" pack, which records objects in deltified form based
|
|
|
|
on objects not included in the pack to reduce network traffic.
|
2007-01-19 13:43:00 +01:00
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
--include-tag::
|
2008-03-04 04:27:33 +01:00
|
|
|
If the remote side supports it, annotated tags objects will
|
|
|
|
be downloaded on the same connection as the other objects if
|
|
|
|
the object the tag references is downloaded. The caller must
|
|
|
|
otherwise determine the tags this option made available.
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
--upload-pack=<git-upload-pack>::
|
2008-07-03 07:41:41 +02:00
|
|
|
Use this to specify the path to 'git-upload-pack' on the
|
2005-07-14 09:08:37 +02:00
|
|
|
remote side, if is not found on your $PATH.
|
|
|
|
Installations of sshd ignores the user's environment
|
|
|
|
setup scripts for login shells (e.g. .bash_profile) and
|
2005-10-11 01:01:31 +02:00
|
|
|
your privately installed git may not be found on the system
|
2005-07-14 09:08:37 +02:00
|
|
|
default $PATH. Another workaround suggested is to set
|
|
|
|
up your $PATH in ".bashrc", but this flag is for people
|
|
|
|
who do not want to pay the overhead for non-interactive
|
|
|
|
shells by having a lean .bashrc file (they set most of
|
|
|
|
the things up in .bash_profile).
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
--exec=<git-upload-pack>::
|
2007-01-23 09:20:17 +01:00
|
|
|
Same as \--upload-pack=<git-upload-pack>.
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
--depth=<n>::
|
2007-01-19 13:43:00 +01:00
|
|
|
Limit fetching to ancestor-chains not longer than n.
|
2013-01-11 10:05:46 +01:00
|
|
|
'git-upload-pack' treats the special depth 2147483647 as
|
|
|
|
infinite even if there is an ancestor-chain that long.
|
2007-01-19 13:43:00 +01:00
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
--no-progress::
|
2007-02-20 03:01:44 +01:00
|
|
|
Do not show the progress.
|
|
|
|
|
2013-07-21 10:18:05 +02:00
|
|
|
--check-self-contained-and-connected::
|
|
|
|
Output "connectivity-ok" if the received pack is
|
|
|
|
self-contained and connected.
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-v::
|
2007-01-19 13:43:00 +01:00
|
|
|
Run verbosely.
|
|
|
|
|
2013-11-08 18:54:05 +01:00
|
|
|
<repository>::
|
|
|
|
The URL to the remote repository.
|
2005-07-14 09:08:37 +02:00
|
|
|
|
2005-08-12 11:08:29 +02:00
|
|
|
<refs>...::
|
2005-07-14 09:08:37 +02:00
|
|
|
The remote heads to update from. This is relative to
|
|
|
|
$GIT_DIR (e.g. "HEAD", "refs/heads/master"). When
|
|
|
|
unspecified, update from all heads the remote side has.
|
|
|
|
|
2013-11-08 18:54:05 +01:00
|
|
|
SEE ALSO
|
|
|
|
--------
|
|
|
|
linkgit:git-fetch[1]
|
|
|
|
|
2005-07-14 09:08:37 +02:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|