]> git.ipfire.org Git - thirdparty/git.git/blame - t/t3050-subprojects-fetch.sh
GIT-VERSION-GEN: support non-standard $GIT_DIR path
[thirdparty/git.git] / t / t3050-subprojects-fetch.sh
CommitLineData
1211be6b
LT
1#!/bin/sh
2
3test_description='fetching and pushing project with subproject'
4
5. ./test-lib.sh
6
7test_expect_success setup '
8 test_tick &&
9 mkdir -p sub && (
10 cd sub &&
11 git init &&
12 >subfile &&
a48fcd83 13 git add subfile &&
1211be6b
LT
14 git commit -m "subproject commit #1"
15 ) &&
a48fcd83 16 >mainfile &&
1211be6b
LT
17 git add sub mainfile &&
18 test_tick &&
19 git commit -m "superproject commit #1"
20'
21
22test_expect_success clone '
f69e836f 23 git clone "file://$(pwd)/.git" cloned &&
1211be6b
LT
24 (git rev-parse HEAD; git ls-files -s) >expected &&
25 (
26 cd cloned &&
27 (git rev-parse HEAD; git ls-files -s) >../actual
28 ) &&
82ebb0b6 29 test_cmp expected actual
1211be6b
LT
30'
31
32test_expect_success advance '
33 echo more >mainfile &&
34 git update-index --force-remove sub &&
35 mv sub/.git sub/.git-disabled &&
36 git add sub/subfile mainfile &&
37 mv sub/.git-disabled sub/.git &&
38 test_tick &&
39 git commit -m "superproject commit #2"
40'
41
42test_expect_success fetch '
43 (git rev-parse HEAD; git ls-files -s) >expected &&
44 (
45 cd cloned &&
46 git pull &&
47 (git rev-parse HEAD; git ls-files -s) >../actual
48 ) &&
82ebb0b6 49 test_cmp expected actual
1211be6b
LT
50'
51
52test_done