2012-11-28 23:11:01 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# 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"
|
|
|
|
|
|
|
|
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"
|
|
|
|
testgitmarks_args=( "--"{import,export}"-marks=$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"
|
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
|
2012-11-28 23:11:07 +01:00
|
|
|
echo "feature done"
|
|
|
|
git fast-export "${testgitmarks_args[@]}" $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)
|
2012-11-28 23:11:06 +01:00
|
|
|
before=$(git for-each-ref --format='%(refname) %(objectname)')
|
|
|
|
|
2012-11-28 23:11:05 +01:00
|
|
|
git fast-import "${testgitmarks_args[@]}" --quiet
|
2012-11-28 23:11:06 +01:00
|
|
|
|
|
|
|
after=$(git for-each-ref --format='%(refname) %(objectname)')
|
|
|
|
|
|
|
|
# figure out which refs were updated
|
|
|
|
join -e 0 -o '0 1.2 2.2' -a 2 <(echo "$before") <(echo "$after") |
|
|
|
|
while read ref a b
|
|
|
|
do
|
|
|
|
test $a == $b && continue
|
|
|
|
echo "ok $ref"
|
|
|
|
done
|
|
|
|
|
2012-11-28 23:11:01 +01:00
|
|
|
echo
|
|
|
|
;;
|
|
|
|
'')
|
|
|
|
exit
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|