2005-07-24 02:54:26 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
|
|
|
|
usage () {
|
2006-01-20 19:38:16 +01:00
|
|
|
echo >&2 "usage: $0 [--heads] [--tags] [-u|--upload-pack <upload-pack>]"
|
|
|
|
echo >&2 " <repository> <refs>..."
|
2005-07-24 02:54:26 +02:00
|
|
|
exit 1;
|
|
|
|
}
|
|
|
|
|
2005-11-28 08:15:02 +01:00
|
|
|
die () {
|
|
|
|
echo >&2 "$*"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2006-01-20 19:38:16 +01:00
|
|
|
exec=
|
2005-07-24 02:54:26 +02:00
|
|
|
while case "$#" in 0) break;; esac
|
|
|
|
do
|
|
|
|
case "$1" in
|
|
|
|
-h|--h|--he|--hea|--head|--heads)
|
|
|
|
heads=heads; shift ;;
|
|
|
|
-t|--t|--ta|--tag|--tags)
|
|
|
|
tags=tags; shift ;;
|
2006-01-20 19:38:16 +01:00
|
|
|
-u|--u|--up|--upl|--uploa|--upload|--upload-|--upload-p|--upload-pa|\
|
|
|
|
--upload-pac|--upload-pack)
|
|
|
|
shift
|
2007-01-23 09:51:53 +01:00
|
|
|
exec="--upload-pack=$1"
|
|
|
|
shift;;
|
|
|
|
-u=*|--u=*|--up=*|--upl=*|--uplo=*|--uploa=*|--upload=*|\
|
|
|
|
--upload-=*|--upload-p=*|--upload-pa=*|--upload-pac=*|--upload-pack=*)
|
2007-01-30 19:11:49 +01:00
|
|
|
exec=--upload-pack=$(expr "z$1" : 'z-[^=]*=\(.*\)')
|
2006-01-20 19:38:16 +01:00
|
|
|
shift;;
|
2005-07-24 02:54:26 +02:00
|
|
|
--)
|
|
|
|
shift; break ;;
|
|
|
|
-*)
|
|
|
|
usage ;;
|
|
|
|
*)
|
|
|
|
break ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
|
2005-08-08 10:20:03 +02:00
|
|
|
case "$#" in 0) usage ;; esac
|
2005-07-24 02:54:26 +02:00
|
|
|
|
|
|
|
case ",$heads,$tags," in
|
|
|
|
,,,) heads=heads tags=tags other=other ;;
|
|
|
|
esac
|
|
|
|
|
2005-09-08 02:26:23 +02:00
|
|
|
. git-parse-remote
|
2005-08-20 11:57:26 +02:00
|
|
|
peek_repo="$(get_remote_url "$@")"
|
2005-08-08 10:20:03 +02:00
|
|
|
shift
|
2005-07-24 02:54:26 +02:00
|
|
|
|
|
|
|
tmp=.ls-remote-$$
|
|
|
|
trap "rm -fr $tmp-*" 0 1 2 3 15
|
|
|
|
tmpdir=$tmp-d
|
|
|
|
|
|
|
|
case "$peek_repo" in
|
2006-09-14 04:24:04 +02:00
|
|
|
http://* | https://* | ftp://* )
|
2005-07-24 02:54:26 +02:00
|
|
|
if [ -n "$GIT_SSL_NO_VERIFY" ]; then
|
|
|
|
curl_extra_args="-k"
|
|
|
|
fi
|
2006-09-29 02:10:44 +02:00
|
|
|
if [ -n "$GIT_CURL_FTP_NO_EPSV" -o \
|
2007-01-29 01:16:53 +01:00
|
|
|
"`git-config --bool http.noEPSV`" = true ]; then
|
2006-09-29 02:10:44 +02:00
|
|
|
curl_extra_args="${curl_extra_args} --disable-epsv"
|
|
|
|
fi
|
2006-04-04 20:01:30 +02:00
|
|
|
curl -nsf $curl_extra_args --header "Pragma: no-cache" "$peek_repo/info/refs" ||
|
2005-09-13 22:16:45 +02:00
|
|
|
echo "failed slurping"
|
2005-07-24 02:54:26 +02:00
|
|
|
;;
|
|
|
|
|
|
|
|
rsync://* )
|
2006-05-25 06:36:14 +02:00
|
|
|
mkdir $tmpdir &&
|
|
|
|
rsync -rlq "$peek_repo/HEAD" $tmpdir &&
|
2005-09-13 22:16:45 +02:00
|
|
|
rsync -rq "$peek_repo/refs" $tmpdir || {
|
|
|
|
echo "failed slurping"
|
|
|
|
exit
|
|
|
|
}
|
2006-05-25 06:36:14 +02:00
|
|
|
head=$(cat "$tmpdir/HEAD") &&
|
|
|
|
case "$head" in
|
|
|
|
ref:' '*)
|
|
|
|
head=$(expr "z$head" : 'zref: \(.*\)') &&
|
|
|
|
head=$(cat "$tmpdir/$head") || exit
|
|
|
|
esac &&
|
|
|
|
echo "$head HEAD"
|
2005-07-24 02:54:26 +02:00
|
|
|
(cd $tmpdir && find refs -type f) |
|
|
|
|
while read path
|
|
|
|
do
|
|
|
|
cat "$tmpdir/$path" | tr -d '\012'
|
|
|
|
echo " $path"
|
|
|
|
done &&
|
|
|
|
rm -fr $tmpdir
|
|
|
|
;;
|
|
|
|
|
|
|
|
* )
|
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 01:59:14 +01:00
|
|
|
if test -f "$peek_repo" ; then
|
|
|
|
git bundle list-heads "$peek_repo" ||
|
2005-09-13 22:16:45 +02:00
|
|
|
echo "failed slurping"
|
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 01:59:14 +01:00
|
|
|
else
|
|
|
|
git-peek-remote $exec "$peek_repo" ||
|
|
|
|
echo "failed slurping"
|
|
|
|
fi
|
2005-07-24 02:54:26 +02:00
|
|
|
;;
|
|
|
|
esac |
|
2005-08-08 10:20:03 +02:00
|
|
|
sort -t ' ' -k 2 |
|
2005-07-24 02:54:26 +02:00
|
|
|
while read sha1 path
|
|
|
|
do
|
2005-09-13 22:16:45 +02:00
|
|
|
case "$sha1" in
|
|
|
|
failed)
|
2006-12-18 21:16:58 +01:00
|
|
|
exit 1 ;;
|
2005-09-13 22:16:45 +02:00
|
|
|
esac
|
2005-07-24 02:54:26 +02:00
|
|
|
case "$path" in
|
|
|
|
refs/heads/*)
|
|
|
|
group=heads ;;
|
|
|
|
refs/tags/*)
|
|
|
|
group=tags ;;
|
|
|
|
*)
|
|
|
|
group=other ;;
|
|
|
|
esac
|
|
|
|
case ",$heads,$tags,$other," in
|
|
|
|
*,$group,*)
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
continue;;
|
|
|
|
esac
|
2005-08-08 10:20:03 +02:00
|
|
|
case "$#" in
|
|
|
|
0)
|
|
|
|
match=yes ;;
|
|
|
|
*)
|
|
|
|
match=no
|
|
|
|
for pat
|
|
|
|
do
|
|
|
|
case "/$path" in
|
|
|
|
*/$pat )
|
|
|
|
match=yes
|
|
|
|
break ;;
|
|
|
|
esac
|
|
|
|
done
|
2005-07-24 02:54:26 +02:00
|
|
|
esac
|
2005-08-08 10:20:03 +02:00
|
|
|
case "$match" in
|
|
|
|
no)
|
|
|
|
continue ;;
|
|
|
|
esac
|
|
|
|
echo "$sha1 $path"
|
2005-07-24 02:54:26 +02:00
|
|
|
done
|