]> git.ipfire.org Git - thirdparty/git.git/blame - git-remote-testgit
git-remote-testgit: avoid process substitution
[thirdparty/git.git] / git-remote-testgit
CommitLineData
fc407f98
FC
1#!/usr/bin/env bash
2# Copyright (c) 2012 Felipe Contreras
3
4alias=$1
5url=$2
6
fc407f98
FC
7dir="$GIT_DIR/testgit/$alias"
8prefix="refs/testgit/$alias"
fc407f98 9
ee10fbf9
FC
10default_refspec="refs/heads/*:${prefix}/heads/*"
11
12refspec="${GIT_REMOTE_TESTGIT_REFSPEC-$default_refspec}"
13
14test -z "$refspec" && prefix="refs"
fc407f98
FC
15
16export GIT_DIR="$url/.git"
17
18mkdir -p "$dir"
19
ee10fbf9
FC
20if test -z "$GIT_REMOTE_TESTGIT_NO_MARKS"
21then
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" )
27fi
fc407f98
FC
28
29while read line
30do
31 case $line in
32 capabilities)
33 echo 'import'
34 echo 'export'
ee10fbf9
FC
35 test -n "$refspec" && echo "refspec $refspec"
36 if test -n "$gitmarks"
37 then
38 echo "*import-marks $gitmarks"
39 echo "*export-marks $gitmarks"
40 fi
fc407f98
FC
41 echo
42 ;;
43 list)
44 git for-each-ref --format='? %(refname)' 'refs/heads/'
45 head=$(git symbolic-ref HEAD)
46 echo "@$head HEAD"
47 echo
48 ;;
49 import*)
50 # read all import lines
51 while true
52 do
53 ref="${line#* }"
54 refs="$refs $ref"
55 read line
56 test "${line%% *}" != "import" && break
57 done
58
ee10fbf9
FC
59 if test -n "$gitmarks"
60 then
61 echo "feature import-marks=$gitmarks"
62 echo "feature export-marks=$gitmarks"
63 fi
81d340d4
FC
64
65 if test -n "$GIT_REMOTE_TESTGIT_FAILURE"
66 then
67 echo "feature done"
68 exit 1
69 fi
70
1d3f9a30
FC
71 echo "feature done"
72 git fast-export "${testgitmarks_args[@]}" $refs |
fc407f98 73 sed -e "s#refs/heads/#${prefix}/heads/#g"
1d3f9a30 74 echo "done"
fc407f98
FC
75 ;;
76 export)
81d340d4
FC
77 if test -n "$GIT_REMOTE_TESTGIT_FAILURE"
78 then
79 # consume input so fast-export doesn't get SIGPIPE;
80 # git would also notice that case, but we want
81 # to make sure we are exercising the later
82 # error checks
83 while read line; do
84 test "done" = "$line" && break
85 done
86 exit 1
87 fi
88
752db425 89 before=$(git for-each-ref --format=' %(refname) %(objectname) ')
93b5cf9c 90
ee10fbf9 91 git fast-import "${testgitmarks_args[@]}" --quiet
93b5cf9c 92
93b5cf9c 93 # figure out which refs were updated
752db425
JS
94 git for-each-ref --format='%(refname) %(objectname)' |
95 while read ref a
93b5cf9c 96 do
752db425
JS
97 case "$before" in
98 *" $ref $a "*)
99 continue ;; # unchanged
100 esac
93b5cf9c
FC
101 echo "ok $ref"
102 done
103
fc407f98
FC
104 echo
105 ;;
106 '')
107 exit
108 ;;
109 esac
110done