2013-04-25 12:59:41 +02:00
|
|
|
#!/bin/sh
|
2012-11-28 23:11:01 +01:00
|
|
|
# Copyright (c) 2012 Felipe Contreras
|
|
|
|
|
|
|
|
alias=$1
|
|
|
|
url=$2
|
|
|
|
|
|
|
|
dir="$GIT_DIR/testgit/$alias"
|
|
|
|
prefix="refs/testgit/$alias"
|
|
|
|
|
2012-11-28 23:11:05 +01:00
|
|
|
default_refspec="refs/heads/*:${prefix}/heads/*"
|
|
|
|
|
|
|
|
refspec="${GIT_REMOTE_TESTGIT_REFSPEC-$default_refspec}"
|
|
|
|
|
|
|
|
test -z "$refspec" && prefix="refs"
|
2012-11-28 23:11:01 +01:00
|
|
|
|
|
|
|
export GIT_DIR="$url/.git"
|
|
|
|
|
2013-11-12 21:56:56 +01:00
|
|
|
force=
|
|
|
|
|
2012-11-28 23:11:01 +01:00
|
|
|
mkdir -p "$dir"
|
|
|
|
|
2012-11-28 23:11:05 +01:00
|
|
|
if test -z "$GIT_REMOTE_TESTGIT_NO_MARKS"
|
|
|
|
then
|
|
|
|
gitmarks="$dir/git.marks"
|
|
|
|
testgitmarks="$dir/testgit.marks"
|
|
|
|
test -e "$gitmarks" || >"$gitmarks"
|
|
|
|
test -e "$testgitmarks" || >"$testgitmarks"
|
|
|
|
fi
|
2012-11-28 23:11:01 +01:00
|
|
|
|
|
|
|
while read line
|
|
|
|
do
|
|
|
|
case $line in
|
|
|
|
capabilities)
|
|
|
|
echo 'import'
|
|
|
|
echo 'export'
|
2012-11-28 23:11:05 +01:00
|
|
|
test -n "$refspec" && echo "refspec $refspec"
|
|
|
|
if test -n "$gitmarks"
|
|
|
|
then
|
|
|
|
echo "*import-marks $gitmarks"
|
|
|
|
echo "*export-marks $gitmarks"
|
|
|
|
fi
|
2013-04-14 12:57:08 +02:00
|
|
|
test -n "$GIT_REMOTE_TESTGIT_SIGNED_TAGS" && echo "signed-tags"
|
2013-09-03 17:45:14 +02:00
|
|
|
test -n "$GIT_REMOTE_TESTGIT_NO_PRIVATE_UPDATE" && echo "no-private-update"
|
2013-11-12 21:56:56 +01:00
|
|
|
echo 'option'
|
2012-11-28 23:11:01 +01:00
|
|
|
echo
|
|
|
|
;;
|
|
|
|
list)
|
|
|
|
git for-each-ref --format='? %(refname)' 'refs/heads/'
|
|
|
|
head=$(git symbolic-ref HEAD)
|
|
|
|
echo "@$head HEAD"
|
|
|
|
echo
|
|
|
|
;;
|
|
|
|
import*)
|
|
|
|
# read all import lines
|
|
|
|
while true
|
|
|
|
do
|
|
|
|
ref="${line#* }"
|
|
|
|
refs="$refs $ref"
|
|
|
|
read line
|
|
|
|
test "${line%% *}" != "import" && break
|
|
|
|
done
|
|
|
|
|
2012-11-28 23:11:05 +01:00
|
|
|
if test -n "$gitmarks"
|
|
|
|
then
|
|
|
|
echo "feature import-marks=$gitmarks"
|
|
|
|
echo "feature export-marks=$gitmarks"
|
|
|
|
fi
|
2013-04-10 23:15:52 +02:00
|
|
|
|
|
|
|
if test -n "$GIT_REMOTE_TESTGIT_FAILURE"
|
|
|
|
then
|
|
|
|
echo "feature done"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2012-11-28 23:11:07 +01:00
|
|
|
echo "feature done"
|
2013-04-25 12:59:41 +02:00
|
|
|
git fast-export \
|
|
|
|
${testgitmarks:+"--import-marks=$testgitmarks"} \
|
|
|
|
${testgitmarks:+"--export-marks=$testgitmarks"} \
|
|
|
|
$refs |
|
2012-11-28 23:11:01 +01:00
|
|
|
sed -e "s#refs/heads/#${prefix}/heads/#g"
|
2012-11-28 23:11:07 +01:00
|
|
|
echo "done"
|
2012-11-28 23:11:01 +01:00
|
|
|
;;
|
|
|
|
export)
|
2013-04-10 23:15:52 +02:00
|
|
|
if test -n "$GIT_REMOTE_TESTGIT_FAILURE"
|
|
|
|
then
|
|
|
|
# consume input so fast-export doesn't get SIGPIPE;
|
|
|
|
# git would also notice that case, but we want
|
|
|
|
# to make sure we are exercising the later
|
|
|
|
# error checks
|
|
|
|
while read line; do
|
|
|
|
test "done" = "$line" && break
|
|
|
|
done
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2013-04-27 21:13:13 +02:00
|
|
|
before=$(git for-each-ref --format=' %(refname) %(objectname) ')
|
2012-11-28 23:11:06 +01:00
|
|
|
|
2013-04-25 12:59:41 +02:00
|
|
|
git fast-import \
|
2013-11-12 21:56:56 +01:00
|
|
|
${force:+--force} \
|
2013-04-25 12:59:41 +02:00
|
|
|
${testgitmarks:+"--import-marks=$testgitmarks"} \
|
|
|
|
${testgitmarks:+"--export-marks=$testgitmarks"} \
|
|
|
|
--quiet
|
2012-11-28 23:11:06 +01:00
|
|
|
|
|
|
|
# figure out which refs were updated
|
2013-04-27 21:13:13 +02:00
|
|
|
git for-each-ref --format='%(refname) %(objectname)' |
|
|
|
|
while read ref a
|
2012-11-28 23:11:06 +01:00
|
|
|
do
|
2013-04-27 21:13:13 +02:00
|
|
|
case "$before" in
|
|
|
|
*" $ref $a "*)
|
|
|
|
continue ;; # unchanged
|
|
|
|
esac
|
2013-05-10 14:08:30 +02:00
|
|
|
if test -z "$GIT_REMOTE_TESTGIT_PUSH_ERROR"
|
|
|
|
then
|
|
|
|
echo "ok $ref"
|
|
|
|
else
|
|
|
|
echo "error $ref $GIT_REMOTE_TESTGIT_PUSH_ERROR"
|
|
|
|
fi
|
2012-11-28 23:11:06 +01:00
|
|
|
done
|
|
|
|
|
2012-11-28 23:11:01 +01:00
|
|
|
echo
|
|
|
|
;;
|
2013-11-12 21:56:56 +01:00
|
|
|
option\ *)
|
|
|
|
read cmd opt val <<-EOF
|
|
|
|
$line
|
|
|
|
EOF
|
|
|
|
case $opt in
|
|
|
|
force)
|
|
|
|
test $val = "true" && force="true" || force=
|
|
|
|
echo "ok"
|
|
|
|
;;
|
|
|
|
*)
|
|
|
|
echo "unsupported"
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
;;
|
2012-11-28 23:11:01 +01:00
|
|
|
'')
|
|
|
|
exit
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|