Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git-remote-testgit - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5117ab5fe0ac479672112aab60c8453e7e74866b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env bash
# Copyright (c) 2012 Felipe Contreras

alias=$1
url=$2

dir="$GIT_DIR/testgit/$alias"
prefix="refs/testgit/$alias"
refspec="refs/heads/*:${prefix}/heads/*"

gitmarks="$dir/git.marks"
testgitmarks="$dir/testgit.marks"

export GIT_DIR="$url/.git"

mkdir -p "$dir"

test -e "$gitmarks" || > "$gitmarks"
test -e "$testgitmarks" || > "$testgitmarks"

while read line
do
	case $line in
	capabilities)
		echo 'import'
		echo 'export'
		echo "refspec $refspec"
		echo "*import-marks $gitmarks"
		echo "*export-marks $gitmarks"
		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

		echo "feature import-marks=$gitmarks"
		echo "feature export-marks=$gitmarks"
		git fast-export --use-done-feature --{import,export}-marks="$testgitmarks" $refs |
		sed -e "s#refs/heads/#${prefix}/heads/#g"
		;;
	export)
		git fast-import --{import,export}-marks="$testgitmarks" --quiet
		echo
		;;
	'')
		exit
		;;
	esac
done