Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
git-bundle(1)
|
|
|
|
=============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
|
|
|
git-bundle - Move objects and refs by archive
|
|
|
|
|
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2007-05-18 17:39:33 +04:00
|
|
|
[verse]
|
2020-07-30 02:14:20 +03:00
|
|
|
'git bundle' create [-q | --quiet | --progress | --all-progress] [--all-progress-implied]
|
|
|
|
[--version=<version>] <file> <git-rev-list-args>
|
2019-11-10 23:41:26 +03:00
|
|
|
'git bundle' verify [-q | --quiet] <file>
|
2010-10-08 21:31:15 +04:00
|
|
|
'git bundle' list-heads <file> [<refname>...]
|
bundle: show progress on "unbundle"
The "unbundle" command added in 2e0afafebd8 (Add git-bundle: move
objects and references by archive, 2007-02-22) did not show progress
output, even though the underlying API learned how to show progress in
be042aff24c (Teach progress eye-candy to fetch_refs_from_bundle(),
2011-09-18).
Now we'll show "Unbundling objects" using the new --progress-title
option to "git index-pack", to go with its existing "Receiving
objects" and "Indexing objects" (which it shows when invoked with
"--stdin", and with a pack file, respectively).
Unlike "git bundle create" we don't handle "--quiet" here, nor
"--all-progress" and "--all-progress-implied". Those are all specific
to "create" (and "verify", in the case of "--quiet").
The structure of the existing documentation is a bit unclear, e.g. the
documentation for the "--quiet" option added in
79862b6b77c (bundle-create: progress output control, 2019-11-10) only
describes how it works for "create", and not for "verify". That and
other issues in it should be fixed, but I'd like to avoid untangling
that mess right now. Let's just support the standard "--no-progress"
implicitly here, and leave cleaning up the general behavior of "git
bundle" for a later change.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2021-09-05 10:34:45 +03:00
|
|
|
'git bundle' unbundle [--progress] <file> [<refname>...]
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
|
2021-07-31 11:23:04 +03:00
|
|
|
Create, unpack, and manipulate "bundle" files. Bundles are used for
|
|
|
|
the "offline" transfer of Git objects without an active "server"
|
|
|
|
sitting on the other side of the network connection.
|
|
|
|
|
|
|
|
They can be used to create both incremental and full backups of a
|
|
|
|
repository, and to relay the state of the references in one repository
|
|
|
|
to another.
|
|
|
|
|
|
|
|
Git commands that fetch or otherwise "read" via protocols such as
|
|
|
|
`ssh://` and `https://` can also operate on bundle files. It is
|
|
|
|
possible linkgit:git-clone[1] a new repository from a bundle, to use
|
|
|
|
linkgit:git-fetch[1] to fetch from one, and to list the references
|
|
|
|
contained within it with linkgit:git-ls-remote[1]. There's no
|
|
|
|
corresponding "write" support, i.e.a 'git push' into a bundle is not
|
|
|
|
supported.
|
|
|
|
|
|
|
|
See the "EXAMPLES" section below for examples of how to use bundles.
|
|
|
|
|
|
|
|
BUNDLE FORMAT
|
|
|
|
-------------
|
|
|
|
|
|
|
|
Bundles are `.pack` files (see linkgit:git-pack-objects[1]) with a
|
|
|
|
header indicating what references are contained within the bundle.
|
|
|
|
|
|
|
|
Like the the packed archive format itself bundles can either be
|
|
|
|
self-contained, or be created using exclusions.
|
2021-07-31 11:23:05 +03:00
|
|
|
See the "OBJECT PREREQUISITES" section below.
|
2021-07-31 11:23:04 +03:00
|
|
|
|
|
|
|
Bundles created using revision exclusions are "thin packs" created
|
|
|
|
using the `--thin` option to linkgit:git-pack-objects[1], and
|
|
|
|
unbundled using the `--fix-thin` option to linkgit:git-index-pack[1].
|
|
|
|
|
|
|
|
There is no option to create a "thick pack" when using revision
|
2021-10-24 20:08:21 +03:00
|
|
|
exclusions, and users should not be concerned about the difference. By
|
|
|
|
using "thin packs", bundles created using exclusions are smaller in
|
2021-07-31 11:23:04 +03:00
|
|
|
size. That they're "thin" under the hood is merely noted here as a
|
2021-10-24 20:08:21 +03:00
|
|
|
curiosity, and as a reference to other documentation.
|
2021-07-31 11:23:04 +03:00
|
|
|
|
|
|
|
See link:technical/bundle-format.html[the `bundle-format`
|
|
|
|
documentation] for more details and the discussion of "thin pack" in
|
|
|
|
link:technical/pack-format.html[the pack format documentation] for
|
|
|
|
further details.
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
|
|
|
|
2019-11-10 23:41:25 +03:00
|
|
|
create [options] <file> <git-rev-list-args>::
|
2010-08-23 13:02:38 +04:00
|
|
|
Used to create a bundle named 'file'. This requires the
|
2019-10-20 14:03:06 +03:00
|
|
|
'<git-rev-list-args>' arguments to define the bundle contents.
|
2019-11-10 23:41:25 +03:00
|
|
|
'options' contains the options specific to the 'git bundle create'
|
|
|
|
subcommand.
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
|
|
|
verify <file>::
|
2010-08-23 13:02:38 +04:00
|
|
|
Used to check that a bundle file is valid and will apply
|
|
|
|
cleanly to the current repository. This includes checks on the
|
|
|
|
bundle format itself as well as checking that the prerequisite
|
|
|
|
commits exist and are fully linked in the current repository.
|
2022-03-22 20:28:38 +03:00
|
|
|
Then, 'git bundle' prints a list of missing commits, if any.
|
|
|
|
Finally, information about additional capabilities, such as "object
|
|
|
|
filter", is printed. See "Capabilities" in link:technical/bundle-format.html
|
|
|
|
for more information. The exit code is zero for success, but will
|
|
|
|
be nonzero if the bundle file is invalid.
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
|
|
|
list-heads <file>::
|
2010-08-23 13:02:38 +04:00
|
|
|
Lists the references defined in the bundle. If followed by a
|
|
|
|
list of references, only references matching those given are
|
|
|
|
printed out.
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
|
|
|
unbundle <file>::
|
2010-08-23 13:02:38 +04:00
|
|
|
Passes the objects in the bundle to 'git index-pack'
|
|
|
|
for storage in the repository, then prints the names of all
|
|
|
|
defined references. If a list of references is given, only
|
|
|
|
references matching those in the list are printed. This command is
|
|
|
|
really plumbing, intended to be called only by 'git fetch'.
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2010-08-23 13:02:37 +04:00
|
|
|
<git-rev-list-args>::
|
2010-08-23 13:02:38 +04:00
|
|
|
A list of arguments, acceptable to 'git rev-parse' and
|
2011-01-03 22:03:34 +03:00
|
|
|
'git rev-list' (and containing a named ref, see SPECIFYING REFERENCES
|
2010-08-23 13:02:39 +04:00
|
|
|
below), that specifies the specific objects and references
|
docs: stop using asciidoc no-inline-literal
In asciidoc 7, backticks like `foo` produced a typographic
effect, but did not otherwise affect the syntax. In asciidoc
8, backticks introduce an "inline literal" inside which markup
is not interpreted. To keep compatibility with existing
documents, asciidoc 8 has a "no-inline-literal" attribute to
keep the old behavior. We enabled this so that the
documentation could be built on either version.
It has been several years now, and asciidoc 7 is no longer
in wide use. We can now decide whether or not we want
inline literals on their own merits, which are:
1. The source is much easier to read when the literal
contains punctuation. You can use `master~1` instead
of `master{tilde}1`.
2. They are less error-prone. Because of point (1), we
tend to make mistakes and forget the extra layer of
quoting.
This patch removes the no-inline-literal attribute from the
Makefile and converts every use of backticks in the
documentation to an inline literal (they must be cleaned up,
or the example above would literally show "{tilde}" in the
output).
Problematic sites were found by grepping for '`.*[{\\]' and
examined and fixed manually. The results were then verified
by comparing the output of "html2text" on the set of
generated html pages. Doing so revealed that in addition to
making the source more readable, this patch fixes several
formatting bugs:
- HTML rendering used the ellipsis character instead of
literal "..." in code examples (like "git log A...B")
- some code examples used the right-arrow character
instead of '->' because they failed to quote
- api-config.txt did not quote tilde, and the resulting
HTML contained a bogus snippet like:
<tt><sub></tt> foo <tt></sub>bar</tt>
which caused some parsers to choke and omit whole
sections of the page.
- git-commit.txt confused ``foo`` (backticks inside a
literal) with ``foo'' (matched double-quotes)
- mentions of `A U Thor <author@example.com>` used to
erroneously auto-generate a mailto footnote for
author@example.com
- the description of --word-diff=plain incorrectly showed
the output as "[-removed-] and {added}", not "{+added+}".
- using "prime" notation like:
commit `C` and its replacement `C'`
confused asciidoc into thinking that everything between
the first backtick and the final apostrophe were meant
to be inside matched quotes
- asciidoc got confused by the escaping of some of our
asterisks. In particular,
`credential.\*` and `credential.<url>.\*`
properly escaped the asterisk in the first case, but
literally passed through the backslash in the second
case.
Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
2012-04-26 12:51:57 +04:00
|
|
|
to transport. For example, `master~10..master` causes the
|
2010-08-23 13:02:38 +04:00
|
|
|
current master reference to be packaged along with all objects
|
|
|
|
added since its 10th ancestor commit. There is no explicit
|
|
|
|
limit to the number of references and objects that may be
|
|
|
|
packaged.
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
|
|
|
|
2010-10-08 21:31:15 +04:00
|
|
|
[<refname>...]::
|
2010-08-23 13:02:38 +04:00
|
|
|
A list of references used to limit the references reported as
|
|
|
|
available. This is principally of use to 'git fetch', which
|
|
|
|
expects to receive only those references asked for and not
|
|
|
|
necessarily everything in the pack (in this case, 'git bundle' acts
|
|
|
|
like 'git fetch-pack').
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2019-11-10 23:41:25 +03:00
|
|
|
--progress::
|
|
|
|
Progress status is reported on the standard error stream
|
|
|
|
by default when it is attached to a terminal, unless -q
|
|
|
|
is specified. This flag forces progress status even if
|
|
|
|
the standard error stream is not directed to a terminal.
|
|
|
|
|
|
|
|
--all-progress::
|
|
|
|
When --stdout is specified then progress report is
|
|
|
|
displayed during the object count and compression phases
|
|
|
|
but inhibited during the write-out phase. The reason is
|
|
|
|
that in some cases the output stream is directly linked
|
|
|
|
to another command which may wish to display progress
|
|
|
|
status of its own as it processes incoming pack data.
|
|
|
|
This flag is like --progress except that it forces progress
|
|
|
|
report for the write-out phase as well even if --stdout is
|
|
|
|
used.
|
|
|
|
|
|
|
|
--all-progress-implied::
|
|
|
|
This is used to imply --all-progress whenever progress display
|
|
|
|
is activated. Unlike --all-progress this flag doesn't actually
|
|
|
|
force any progress display by itself.
|
|
|
|
|
2020-07-30 02:14:20 +03:00
|
|
|
--version=<version>::
|
|
|
|
Specify the bundle version. Version 2 is the older format and can only be
|
|
|
|
used with SHA-1 repositories; the newer version 3 contains capabilities that
|
|
|
|
permit extensions. The default is the oldest supported format, based on the
|
|
|
|
hash algorithm in use.
|
|
|
|
|
2019-11-10 23:41:25 +03:00
|
|
|
-q::
|
|
|
|
--quiet::
|
|
|
|
This flag makes the command not to report its progress
|
|
|
|
on the standard error stream.
|
|
|
|
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
SPECIFYING REFERENCES
|
|
|
|
---------------------
|
|
|
|
|
2021-10-24 20:08:21 +03:00
|
|
|
Revisions must be accompanied by reference names to be packaged in a
|
2021-07-31 11:23:06 +03:00
|
|
|
bundle.
|
|
|
|
|
2021-07-31 11:23:07 +03:00
|
|
|
More than one reference may be packaged, and more than one set of prerequisite objects can
|
2021-07-31 11:23:06 +03:00
|
|
|
be specified. The objects packaged are those not contained in the
|
2021-07-31 11:23:07 +03:00
|
|
|
union of the prerequisites.
|
2021-07-31 11:23:06 +03:00
|
|
|
|
|
|
|
The 'git bundle create' command resolves the reference names for you
|
|
|
|
using the same rules as `git rev-parse --abbrev-ref=loose`. Each
|
2021-07-31 11:23:07 +03:00
|
|
|
prerequisite can be specified explicitly (e.g. `^master~10`), or implicitly
|
2021-07-31 11:23:06 +03:00
|
|
|
(e.g. `master~10..master`, `--since=10.days.ago master`).
|
|
|
|
|
|
|
|
All of these simple cases are OK (assuming we have a "master" and
|
|
|
|
"next" branch):
|
|
|
|
|
|
|
|
----------------
|
|
|
|
$ git bundle create master.bundle master
|
|
|
|
$ echo master | git bundle create master.bundle --stdin
|
|
|
|
$ git bundle create master-and-next.bundle master next
|
|
|
|
$ (echo master; echo next) | git bundle create master-and-next.bundle --stdin
|
|
|
|
----------------
|
|
|
|
|
|
|
|
And so are these (and the same but omitted `--stdin` examples):
|
|
|
|
|
|
|
|
----------------
|
|
|
|
$ git bundle create recent-master.bundle master~10..master
|
|
|
|
$ git bundle create recent-updates.bundle master~10..master next~5..next
|
|
|
|
----------------
|
|
|
|
|
|
|
|
A revision name or a range whose right-hand-side cannot be resolved to
|
|
|
|
a reference is not accepted:
|
|
|
|
|
|
|
|
----------------
|
|
|
|
$ git bundle create HEAD.bundle $(git rev-parse HEAD)
|
|
|
|
fatal: Refusing to create empty bundle.
|
|
|
|
$ git bundle create master-yesterday.bundle master~10..master~5
|
|
|
|
fatal: Refusing to create empty bundle.
|
|
|
|
----------------
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2021-07-31 11:23:05 +03:00
|
|
|
OBJECT PREREQUISITES
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
When creating bundles it is possible to create a self-contained bundle
|
|
|
|
that can be unbundled in a repository with no common history, as well
|
|
|
|
as providing negative revisions to exclude objects needed in the
|
|
|
|
earlier parts of the history.
|
|
|
|
|
|
|
|
Feeding a revision such as `new` to `git bundle create` will create a
|
|
|
|
bundle file that contains all the objects reachable from the revision
|
|
|
|
`new`. That bundle can be unbundled in any repository to obtain a full
|
|
|
|
history that leads to the revision `new`:
|
|
|
|
|
|
|
|
----------------
|
|
|
|
$ git bundle create full.bundle new
|
|
|
|
----------------
|
|
|
|
|
|
|
|
A revision range such as `old..new` will produce a bundle file that
|
|
|
|
will require the revision `old` (and any objects reachable from it)
|
|
|
|
to exist for the bundle to be "unbundle"-able:
|
|
|
|
|
|
|
|
----------------
|
|
|
|
$ git bundle create full.bundle old..new
|
|
|
|
----------------
|
|
|
|
|
|
|
|
A self-contained bundle without any prerequisites can be extracted
|
|
|
|
into anywhere, even into an empty repository, or be cloned from
|
|
|
|
(i.e., `new`, but not `old..new`).
|
|
|
|
|
2009-03-23 04:00:14 +03:00
|
|
|
It is okay to err on the side of caution, causing the bundle file
|
|
|
|
to contain objects already in the destination, as these are ignored
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
when unpacking at the destination.
|
|
|
|
|
2019-10-20 14:03:06 +03:00
|
|
|
If you want to match `git clone --mirror`, which would include your
|
|
|
|
refs such as `refs/remotes/*`, use `--all`.
|
|
|
|
If you want to provide the same set of refs that a clone directly
|
|
|
|
from the source repository would get, use `--branches --tags` for
|
|
|
|
the `<git-rev-list-args>`.
|
|
|
|
|
2021-07-31 11:23:05 +03:00
|
|
|
The 'git bundle verify' command can be used to check whether your
|
|
|
|
recipient repository has the required prerequisite commits for a
|
|
|
|
bundle.
|
|
|
|
|
2018-04-30 18:35:33 +03:00
|
|
|
EXAMPLES
|
|
|
|
--------
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2009-02-04 12:15:29 +03:00
|
|
|
Assume you want to transfer the history from a repository R1 on machine A
|
|
|
|
to another repository R2 on machine B.
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
For whatever reason, direct connection between A and B is not allowed,
|
2009-03-23 04:00:14 +03:00
|
|
|
but we can move data from A to B via some mechanism (CD, email, etc.).
|
|
|
|
We want to update R2 with development made on the branch master in R1.
|
2008-02-24 16:42:40 +03:00
|
|
|
|
2009-03-23 04:00:14 +03:00
|
|
|
To bootstrap the process, you can first create a bundle that does not have
|
2021-07-31 11:23:07 +03:00
|
|
|
any prerequisites. You can use a tag to remember up to what commit you last
|
2009-03-23 04:00:14 +03:00
|
|
|
processed, in order to make it easy to later update the other repository
|
|
|
|
with an incremental bundle:
|
2008-02-24 16:42:40 +03:00
|
|
|
|
2009-02-04 12:15:29 +03:00
|
|
|
----------------
|
|
|
|
machineA$ cd R1
|
2009-02-08 01:21:49 +03:00
|
|
|
machineA$ git bundle create file.bundle master
|
2009-02-04 12:15:29 +03:00
|
|
|
machineA$ git tag -f lastR2bundle master
|
|
|
|
----------------
|
2008-02-24 16:42:40 +03:00
|
|
|
|
2013-01-02 00:46:15 +04:00
|
|
|
Then you transfer file.bundle to the target machine B. Because this
|
|
|
|
bundle does not require any existing object to be extracted, you can
|
|
|
|
create a new repository on machine B by cloning from it:
|
2008-02-24 16:42:40 +03:00
|
|
|
|
2009-02-04 12:15:29 +03:00
|
|
|
----------------
|
2013-01-01 17:54:44 +04:00
|
|
|
machineB$ git clone -b master /home/me/tmp/file.bundle R2
|
2009-02-04 12:15:29 +03:00
|
|
|
----------------
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2009-02-04 12:15:29 +03:00
|
|
|
This will define a remote called "origin" in the resulting repository that
|
2009-03-23 04:00:14 +03:00
|
|
|
lets you fetch and pull from the bundle. The $GIT_DIR/config file in R2 will
|
2009-02-04 12:15:29 +03:00
|
|
|
have an entry like this:
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2009-02-04 12:15:29 +03:00
|
|
|
------------------------
|
|
|
|
[remote "origin"]
|
2009-02-08 01:21:49 +03:00
|
|
|
url = /home/me/tmp/file.bundle
|
2009-02-04 12:15:29 +03:00
|
|
|
fetch = refs/heads/*:refs/remotes/origin/*
|
|
|
|
------------------------
|
|
|
|
|
2009-03-23 04:00:14 +03:00
|
|
|
To update the resulting mine.git repository, you can fetch or pull after
|
|
|
|
replacing the bundle stored at /home/me/tmp/file.bundle with incremental
|
|
|
|
updates.
|
2009-02-04 12:15:29 +03:00
|
|
|
|
2009-03-23 04:00:14 +03:00
|
|
|
After working some more in the original repository, you can create an
|
|
|
|
incremental bundle to update the other repository:
|
2009-02-04 12:15:29 +03:00
|
|
|
|
|
|
|
----------------
|
|
|
|
machineA$ cd R1
|
2009-02-08 01:21:49 +03:00
|
|
|
machineA$ git bundle create file.bundle lastR2bundle..master
|
2009-02-04 12:15:29 +03:00
|
|
|
machineA$ git tag -f lastR2bundle master
|
|
|
|
----------------
|
|
|
|
|
2009-03-23 04:00:14 +03:00
|
|
|
You then transfer the bundle to the other machine to replace
|
|
|
|
/home/me/tmp/file.bundle, and pull from it.
|
2009-02-04 12:15:29 +03:00
|
|
|
|
|
|
|
----------------
|
|
|
|
machineB$ cd R2
|
|
|
|
machineB$ git pull
|
|
|
|
----------------
|
2008-02-24 16:42:40 +03:00
|
|
|
|
2009-02-04 12:15:29 +03:00
|
|
|
If you know up to what commit the intended recipient repository should
|
2009-03-23 04:00:14 +03:00
|
|
|
have the necessary objects, you can use that knowledge to specify the
|
2021-07-31 11:23:07 +03:00
|
|
|
prerequisites, giving a cut-off point to limit the revisions and objects that go
|
2010-08-23 13:02:37 +04:00
|
|
|
in the resulting bundle. The previous example used the lastR2bundle tag
|
2009-03-23 04:00:14 +03:00
|
|
|
for this purpose, but you can use any other options that you would give to
|
2009-02-04 12:15:29 +03:00
|
|
|
the linkgit:git-log[1] command. Here are more examples:
|
2008-02-24 16:42:40 +03:00
|
|
|
|
2009-03-23 04:00:14 +03:00
|
|
|
You can use a tag that is present in both:
|
2008-02-24 16:42:40 +03:00
|
|
|
|
2009-02-04 12:15:29 +03:00
|
|
|
----------------
|
|
|
|
$ git bundle create mybundle v1.0.0..master
|
|
|
|
----------------
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2021-07-31 11:23:07 +03:00
|
|
|
You can use a prerequisite based on time:
|
2007-09-27 03:34:59 +04:00
|
|
|
|
2009-02-04 12:15:29 +03:00
|
|
|
----------------
|
|
|
|
$ git bundle create mybundle --since=10.days master
|
|
|
|
----------------
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2009-03-23 04:00:14 +03:00
|
|
|
You can use the number of commits:
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2009-02-04 12:15:29 +03:00
|
|
|
----------------
|
|
|
|
$ git bundle create mybundle -10 master
|
|
|
|
----------------
|
|
|
|
|
|
|
|
You can run `git-bundle verify` to see if you can extract from a bundle
|
2021-07-31 11:23:07 +03:00
|
|
|
that was created with a prerequisite:
|
2009-02-04 12:15:29 +03:00
|
|
|
|
|
|
|
----------------
|
2008-06-30 10:09:04 +04:00
|
|
|
$ git bundle verify mybundle
|
2009-02-04 12:15:29 +03:00
|
|
|
----------------
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2009-02-04 12:15:29 +03:00
|
|
|
This will list what commits you must have in order to extract from the
|
2009-03-23 04:00:14 +03:00
|
|
|
bundle and will error out if you do not have them.
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2009-02-04 12:15:29 +03:00
|
|
|
A bundle from a recipient repository's point of view is just like a
|
2009-03-23 04:00:14 +03:00
|
|
|
regular repository which it fetches or pulls from. You can, for example, map
|
|
|
|
references when fetching:
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2009-02-04 12:15:29 +03:00
|
|
|
----------------
|
|
|
|
$ git fetch mybundle master:localRef
|
|
|
|
----------------
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2010-08-23 13:02:37 +04:00
|
|
|
You can also see what references it offers:
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
2009-02-04 12:15:29 +03:00
|
|
|
----------------
|
|
|
|
$ git ls-remote mybundle
|
|
|
|
----------------
|
Add git-bundle: move objects and references by archive
Some workflows require use of repositories on machines that cannot be
connected, preventing use of git-fetch / git-push to transport objects and
references between the repositories.
git-bundle provides an alternate transport mechanism, effectively allowing
git-fetch and git-pull to operate using sneakernet transport. `git-bundle
create` allows the user to create a bundle containing one or more branches
or tags, but with specified basis assumed to exist on the target
repository. At the receiving end, git-bundle acts like git-fetch-pack,
allowing the user to invoke git-fetch or git-pull using the bundle file as
the URL. git-fetch and git-ls-remote determine they have a bundle URL by
checking that the URL points to a file, but are otherwise unchanged in
operation with bundles.
The original patch was done by Mark Levedahl <mdl123@verizon.net>.
It was updated to make git-bundle a builtin, and get rid of the tar
format: now, the first line is supposed to say "# v2 git bundle", the next
lines either contain a prerequisite ("-" followed by the hash of the
needed commit), or a ref (the hash of a commit, followed by the name of
the ref), and finally the pack. As a result, the bundle argument can be
"-" now.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <junkio@cox.net>
2007-02-22 03:59:14 +03:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 11:07:32 +04:00
|
|
|
Part of the linkgit:git[1] suite
|