2 # Copyright (c) 2012 Felipe Contreras
7 dir="$GIT_DIR/testgit/$alias"
8 prefix="refs/testgit/$alias"
10 default_refspec="refs/heads/*:${prefix}/heads/*"
12 refspec="${GIT_REMOTE_TESTGIT_REFSPEC-$default_refspec}"
14 test -z "$refspec" && prefix="refs"
16 export GIT_DIR="$url/.git"
20 if test -z "$GIT_REMOTE_TESTGIT_NO_MARKS"
22 gitmarks="$dir/git.marks"
23 testgitmarks="$dir/testgit.marks"
24 test -e "$gitmarks" || >"$gitmarks"
25 test -e "$testgitmarks" || >"$testgitmarks"
34 test -n "$refspec" && echo "refspec $refspec"
35 if test -n "$gitmarks"
37 echo "*import-marks $gitmarks"
38 echo "*export-marks $gitmarks"
40 test -n "$GIT_REMOTE_TESTGIT_SIGNED_TAGS" && echo "signed-tags"
44 git for-each-ref --format='? %(refname)' 'refs/heads/'
45 head=$(git symbolic-ref HEAD)
50 # read all import lines
56 test "${line%% *}" != "import" && break
59 if test -n "$gitmarks"
61 echo "feature import-marks=$gitmarks"
62 echo "feature export-marks=$gitmarks"
65 if test -n "$GIT_REMOTE_TESTGIT_FAILURE"
73 ${testgitmarks:+"--import-marks=$testgitmarks"} \
74 ${testgitmarks:+"--export-marks=$testgitmarks"} \
76 sed -e "s#refs/heads/#${prefix}/heads/#g"
80 if test -n "$GIT_REMOTE_TESTGIT_FAILURE"
82 # consume input so fast-export doesn't get SIGPIPE;
83 # git would also notice that case, but we want
84 # to make sure we are exercising the later
87 test "done" = "$line" && break
92 before=$(git for-each-ref --format=' %(refname) %(objectname) ')
95 ${testgitmarks:+"--import-marks=$testgitmarks"} \
96 ${testgitmarks:+"--export-marks=$testgitmarks"} \
99 # figure out which refs were updated
100 git for-each-ref --format='%(refname) %(objectname)' |
105 continue ;; # unchanged
107 if test -z "$GIT_REMOTE_TESTGIT_PUSH_ERROR"
111 echo "error $ref $GIT_REMOTE_TESTGIT_PUSH_ERROR"