Merge branch 'jk/maint-fast-import-doc-reorder'
[git.git] / git-remote-testgit
blobb395c8de59c33768f1a957248447d162bda8ef94
1 #!/usr/bin/env bash
2 # Copyright (c) 2012 Felipe Contreras
4 alias=$1
5 url=$2
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"
18 mkdir -p "$dir"
20 if test -z "$GIT_REMOTE_TESTGIT_NO_MARKS"
21 then
22 gitmarks="$dir/git.marks"
23 testgitmarks="$dir/testgit.marks"
24 test -e "$gitmarks" || >"$gitmarks"
25 test -e "$testgitmarks" || >"$testgitmarks"
26 testgitmarks_args=( "--"{import,export}"-marks=$testgitmarks" )
29 while read line
31 case $line in
32 capabilities)
33 echo 'import'
34 echo 'export'
35 test -n "$refspec" && echo "refspec $refspec"
36 if test -n "$gitmarks"
37 then
38 echo "*import-marks $gitmarks"
39 echo "*export-marks $gitmarks"
41 echo
43 list)
44 git for-each-ref --format='? %(refname)' 'refs/heads/'
45 head=$(git symbolic-ref HEAD)
46 echo "@$head HEAD"
47 echo
49 import*)
50 # read all import lines
51 while true
53 ref="${line#* }"
54 refs="$refs $ref"
55 read line
56 test "${line%% *}" != "import" && break
57 done
59 if test -n "$gitmarks"
60 then
61 echo "feature import-marks=$gitmarks"
62 echo "feature export-marks=$gitmarks"
64 echo "feature done"
65 git fast-export "${testgitmarks_args[@]}" $refs |
66 sed -e "s#refs/heads/#${prefix}/heads/#g"
67 echo "done"
69 export)
70 before=$(git for-each-ref --format='%(refname) %(objectname)')
72 git fast-import "${testgitmarks_args[@]}" --quiet
74 after=$(git for-each-ref --format='%(refname) %(objectname)')
76 # figure out which refs were updated
77 join -e 0 -o '0 1.2 2.2' -a 2 <(echo "$before") <(echo "$after") |
78 while read ref a b
80 test $a == $b && continue
81 echo "ok $ref"
82 done
84 echo
86 '')
87 exit
89 esac
90 done