Some workflows require coordinated development between repositories on
machines that can never be connected. This utility unpacks a bundle
containing objects and associated references (heads or tags) into the
current repository, effectively supporting git-push like operations
between disconnected systems.
Signed-off-by: Mark Levedahl <mdl123@verizon.net>
---
git-unbundle | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 75 insertions(+), 0 deletions(-)
create mode 100755 git-unbundle
diff --git a/git-unbundle b/git-unbundle
new file mode 100755
index 0000000..5ea4ae6
--- /dev/null
+++ b/git-unbundle
@@ -0,0 +1,75 @@
+#!/bin/sh
+# unpack a git-bundle file into current repository
+#
+# See git-bundle.
+
+die() {
+ echo >&2 "$@"
+ exit 1
+}
+
+bfile=bundle.zip
+force=
+shallow=
+while case "$#" in 0) break ;; esac
+do
+ case "$1" in
+ --bare)
+ export GIT_DIR=.;;
+ -f|--f|--fo|--for|--forc|--force)
+ force=1;;
+ -h|--h|--he|--hel|--help)
+ echo "usage: git-unbundle [--bare] [-f|--force] [--shallow] [bundle (default is bundle.zip)]"
+ exit;;
+ -s|--s|--sh|--sha|--shal|--shall|--shallo|--shallow)
+ shallow=1;;
+ -*)
+ die "unknown option: $1";;
+ *)
+ bfile="$1";;
+ esac
+ shift
+done
+
+[ -e "$bfile" ] || die "cannot find $bfile"
+GIT_DIR=$(git-rev-parse --git-dir) || die "Not in a git directory"
+
+# get the objects
+unzip -p "$bfile" .gitBundlePack | git-unpack-objects
+
+# check each reference, assure that the result would be valid before updating local ref
+unzip -p "$bfile" .gitBundleReferences | while read sha1 ref ; do
+ if [ -z "$shallow" ] ; then
+ result=$(git fsck $sha1)
+ havemissing=$(echo "$result" | grep '^missing')
+ else
+ # accept a shallow transfer
+ havemissing=
+ fi
+ ok=
+ if [ ! -z "$havemissing" ] ; then
+ echo "Not updating: $ref to $sha1"
+ echo "Bundle does not contain all required objects. (possibly partial) errors:"
+ echo "$result" | head
+ elif [ -z "$force" ] ; then
+ # update only if non-fastforward
+ local=$(git-rev-parse --verify "$ref^0" 2>/dev/null)
+ if [ ! -z "$local" ] ; then
+ mb=$(git-merge-base $local $sha1)
+ if [ "$mb" != "$local" ] ; then
+ echo "Not applying non-fast forward update: $ref"
+ else
+ ok=1
+ fi
+ else
+ ok=1
+ fi
+ else
+ #forced, accept non-fast forward update
+ ok=1
+ fi
+ if [ ! -z "$ok" ] ; then
+ echo "updating: $ref to $sha1"
+ git-update-ref -m "git-unbundle update" $ref $sha1
+ fi
+done
--
1.5.0.rc3.24.g0c5e
-
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
| Sean | Re: [AppArmor 39/45] AppArmor: Profile loading and manipulation,pathname matching |
| Herbert Xu | Re: 2.6.23-rc4-mm1 |
| Miklos Szeredi | Re: [BUG] long freezes on thinkpad t60 |
| Bart Van Assche | Integration of SCST in the mainstream Linux kernel |
git: | |
| Matthieu Moy | Re: [RFC] Convert builin-mailinfo.c to use The Better String Library. |
| Guido Ostkamp | [PATCH] Fix Solaris Workshop Compiler issues |
| Shawn Pearce | Re: [RFC] Submodules in GIT |
| Imran M Yousuf | Re: [kernel.org users] [RFD] On deprecating "git-foo" for builtins |
| Marcos Laufer | dmesg IBM x3650 OpenBSD 4.3 |
| Marco Peereboom | Re: Real men don't attack straw men |
| patrick keshishian | SMTP flood + spamdb |
| Andrés Delfino | Re: bcw(4) is gone |
| Tilman Schmidt | Re: 2.6.25-rc8: FTP transfer errors |
| Denys Fedoryshchenko | SFQ depth limit |
| David Miller | Re: [PATCH] pkt_sched: Destroy gen estimators under rtnl_lock(). |
| David Miller | [GIT]: Networking |
| high memory | 17 hours ago | Linux kernel |
| semaphore access speed | 19 hours ago | Applications and Utilities |
| the kernel how to power off the machine | 20 hours ago | Linux kernel |
| Easter Eggs in windows XP | 23 hours ago | Windows |
| Shared swap partition | 1 day ago | Linux general |
| Root password | 1 day ago | Linux general |
| Where/when DNOTIFY is used? | 1 day ago | Linux kernel |
| How to convert Linux Kernel built-in module into a loadable module | 1 day ago | Linux kernel |
| Linux 2.6.24 and I/O schedulers | 1 day ago | Linux kernel |
| USB Driver -- Interrupt Polling -- A Little Help Please | 1 day ago | Linux general |
