summaryrefslogtreecommitdiff
path: root/t/t5601-clone.sh
blob: 78a3fa639c97b7dce054d89c74c67a855d0d7954 (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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
#!/bin/sh
 
test_description=clone
 
. ./test-lib.sh
 
test_expect_success setup '
 
	rm -fr .git &&
	test_create_repo src &&
	(
		cd src
		>file
		git add file
		git commit -m initial
	)
 
'
 
test_expect_success 'clone with excess parameters (1)' '
 
	rm -fr dst &&
	test_must_fail git clone -n src dst junk
 
'
 
test_expect_success 'clone with excess parameters (2)' '
 
	rm -fr dst &&
	test_must_fail git clone -n "file://$(pwd)/src" dst junk
 
'
 
test_expect_success 'output from clone' '
	rm -fr dst &&
	git clone -n "file://$(pwd)/src" dst >output &&
	test $(grep Initialized output | wc -l) = 1
'
 
test_expect_success 'clone does not keep pack' '
 
	rm -fr dst &&
	git clone -n "file://$(pwd)/src" dst &&
	! test -f dst/file &&
	! (echo dst/.git/objects/pack/pack-* | grep "\.keep")
 
'
 
test_expect_success 'clone checks out files' '
 
	rm -fr dst &&
	git clone src dst &&
	test -f dst/file
 
'
 
test_expect_success 'clone respects GIT_WORK_TREE' '
 
	GIT_WORK_TREE=worktree git clone src bare &&
	test -f bare/config &&
	test -f worktree/file
 
'
 
test_expect_success 'clone creates intermediate directories' '
 
	git clone src long/path/to/dst &&
	test -f long/path/to/dst/file
 
'
 
test_expect_success 'clone creates intermediate directories for bare repo' '
 
	git clone --bare src long/path/to/bare/dst &&
	test -f long/path/to/bare/dst/config
 
'
 
test_expect_success 'clone --mirror' '
 
	git clone --mirror src mirror &&
	test -f mirror/HEAD &&
	test ! -f mirror/file &&
	FETCH="$(cd mirror && git config remote.origin.fetch)" &&
	test "+refs/*:refs/*" = "$FETCH" &&
	MIRROR="$(cd mirror && git config --bool remote.origin.mirror)" &&
	test "$MIRROR" = true
 
'
 
test_expect_success 'clone --bare names the local repository <name>.git' '
 
	git clone --bare src &&
	test -d src.git
 
'
 
test_expect_success 'clone --mirror does not repeat tags' '
 
	(cd src &&
	 git tag some-tag HEAD) &&
	git clone --mirror src mirror2 &&
	(cd mirror2 &&
	 git show-ref 2> clone.err > clone.out) &&
	test_must_fail grep Duplicate mirror2/clone.err &&
	grep some-tag mirror2/clone.out
 
'
 
test_expect_success 'clone to destination with trailing /' '
 
	git clone src target-1/ &&
	T=$( cd target-1 && git rev-parse HEAD ) &&
	S=$( cd src && git rev-parse HEAD ) &&
	test "$T" = "$S"
 
'
 
test_expect_success 'clone to destination with extra trailing /' '
 
	git clone src target-2/// &&
	T=$( cd target-2 && git rev-parse HEAD ) &&
	S=$( cd src && git rev-parse HEAD ) &&
	test "$T" = "$S"
 
'
 
test_done