Junio C Hamano | 1736855 | 2008-02-23 11:08:25 -0800 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | test_description='subtree merge strategy' |
| 4 | |
Johannes Schindelin | 5902f5f | 2020-11-18 23:44:38 +0000 | [diff] [blame] | 5 | GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main |
Johannes Schindelin | 334afbc | 2020-11-18 23:44:19 +0000 | [diff] [blame] | 6 | export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME |
| 7 | |
Junio C Hamano | 1736855 | 2008-02-23 11:08:25 -0800 | [diff] [blame] | 8 | . ./test-lib.sh |
| 9 | |
| 10 | test_expect_success setup ' |
| 11 | |
Jonathan Nieder | a48fcd8 | 2010-10-30 20:46:54 -0500 | [diff] [blame] | 12 | s="1 2 3 4 5 6 7 8" && |
Eric Sunshine | 0849541 | 2021-12-09 00:11:05 -0500 | [diff] [blame] | 13 | test_write_lines $s >hello && |
Junio C Hamano | 1736855 | 2008-02-23 11:08:25 -0800 | [diff] [blame] | 14 | git add hello && |
| 15 | git commit -m initial && |
| 16 | git checkout -b side && |
| 17 | echo >>hello world && |
| 18 | git add hello && |
| 19 | git commit -m second && |
Johannes Schindelin | 5902f5f | 2020-11-18 23:44:38 +0000 | [diff] [blame] | 20 | git checkout main && |
Eric Sunshine | 0849541 | 2021-12-09 00:11:05 -0500 | [diff] [blame] | 21 | test_write_lines mundo $s >hello && |
Junio C Hamano | 1736855 | 2008-02-23 11:08:25 -0800 | [diff] [blame] | 22 | git add hello && |
Johannes Schindelin | 5902f5f | 2020-11-18 23:44:38 +0000 | [diff] [blame] | 23 | git commit -m main |
Junio C Hamano | 1736855 | 2008-02-23 11:08:25 -0800 | [diff] [blame] | 24 | |
| 25 | ' |
| 26 | |
| 27 | test_expect_success 'subtree available and works like recursive' ' |
| 28 | |
| 29 | git merge -s subtree side && |
Eric Sunshine | 0849541 | 2021-12-09 00:11:05 -0500 | [diff] [blame] | 30 | test_write_lines mundo $s world >expect && |
Jeff King | 82ebb0b | 2008-03-12 17:36:36 -0400 | [diff] [blame] | 31 | test_cmp expect hello |
Junio C Hamano | 1736855 | 2008-02-23 11:08:25 -0800 | [diff] [blame] | 32 | |
| 33 | ' |
| 34 | |
Jeff King | 2ec4150 | 2018-08-02 14:58:21 -0400 | [diff] [blame] | 35 | test_expect_success 'setup branch sub' ' |
| 36 | git checkout --orphan sub && |
| 37 | git rm -rf . && |
| 38 | test_commit foo |
| 39 | ' |
| 40 | |
Johannes Schindelin | 538228e | 2020-10-08 10:13:47 +0000 | [diff] [blame] | 41 | test_expect_success 'setup topic branch' ' |
Johannes Schindelin | 5902f5f | 2020-11-18 23:44:38 +0000 | [diff] [blame] | 42 | git checkout -b topic main && |
Jeff King | 2ec4150 | 2018-08-02 14:58:21 -0400 | [diff] [blame] | 43 | git merge -s ours --no-commit --allow-unrelated-histories sub && |
| 44 | git read-tree --prefix=dir/ -u sub && |
Johannes Schindelin | 538228e | 2020-10-08 10:13:47 +0000 | [diff] [blame] | 45 | git commit -m "initial merge of sub into topic" && |
Jeff King | 2ec4150 | 2018-08-02 14:58:21 -0400 | [diff] [blame] | 46 | test_path_is_file dir/foo.t && |
| 47 | test_path_is_file hello |
| 48 | ' |
| 49 | |
| 50 | test_expect_success 'update branch sub' ' |
| 51 | git checkout sub && |
| 52 | test_commit bar |
| 53 | ' |
| 54 | |
Johannes Schindelin | 538228e | 2020-10-08 10:13:47 +0000 | [diff] [blame] | 55 | test_expect_success 'update topic branch' ' |
| 56 | git checkout topic && |
| 57 | git merge -s subtree sub -m "second merge of sub into topic" && |
Jeff King | 2ec4150 | 2018-08-02 14:58:21 -0400 | [diff] [blame] | 58 | test_path_is_file dir/bar.t && |
| 59 | test_path_is_file dir/foo.t && |
| 60 | test_path_is_file hello |
| 61 | ' |
| 62 | |
Miklos Vajna | 419e383 | 2008-02-28 13:36:54 +0100 | [diff] [blame] | 63 | test_expect_success 'setup' ' |
| 64 | mkdir git-gui && |
| 65 | cd git-gui && |
| 66 | git init && |
| 67 | echo git-gui > git-gui.sh && |
| 68 | o1=$(git hash-object git-gui.sh) && |
| 69 | git add git-gui.sh && |
| 70 | git commit -m "initial git-gui" && |
| 71 | cd .. && |
| 72 | mkdir git && |
| 73 | cd git && |
| 74 | git init && |
| 75 | echo git >git.c && |
| 76 | o2=$(git hash-object git.c) && |
| 77 | git add git.c && |
| 78 | git commit -m "initial git" |
| 79 | ' |
| 80 | |
| 81 | test_expect_success 'initial merge' ' |
| 82 | git remote add -f gui ../git-gui && |
Johannes Schindelin | 5902f5f | 2020-11-18 23:44:38 +0000 | [diff] [blame] | 83 | git merge -s ours --no-commit --allow-unrelated-histories gui/main && |
| 84 | git read-tree --prefix=git-gui/ -u gui/main && |
Miklos Vajna | 419e383 | 2008-02-28 13:36:54 +0100 | [diff] [blame] | 85 | git commit -m "Merge git-gui as our subdirectory" && |
Avery Pennarun | e3cba96 | 2009-11-25 21:23:59 -0500 | [diff] [blame] | 86 | git checkout -b work && |
Miklos Vajna | 419e383 | 2008-02-28 13:36:54 +0100 | [diff] [blame] | 87 | git ls-files -s >actual && |
| 88 | ( |
Eric Sunshine | c8ce376 | 2018-07-01 20:24:02 -0400 | [diff] [blame] | 89 | echo "100644 $o1 0 git-gui/git-gui.sh" && |
Miklos Vajna | 419e383 | 2008-02-28 13:36:54 +0100 | [diff] [blame] | 90 | echo "100644 $o2 0 git.c" |
| 91 | ) >expected && |
Junio C Hamano | 3af8286 | 2008-05-23 22:28:56 -0700 | [diff] [blame] | 92 | test_cmp expected actual |
Miklos Vajna | 419e383 | 2008-02-28 13:36:54 +0100 | [diff] [blame] | 93 | ' |
| 94 | |
| 95 | test_expect_success 'merge update' ' |
| 96 | cd ../git-gui && |
| 97 | echo git-gui2 > git-gui.sh && |
| 98 | o3=$(git hash-object git-gui.sh) && |
| 99 | git add git-gui.sh && |
Johannes Schindelin | b6211b8 | 2020-09-26 21:04:21 +0000 | [diff] [blame] | 100 | git checkout -b topic_2 && |
Miklos Vajna | 419e383 | 2008-02-28 13:36:54 +0100 | [diff] [blame] | 101 | git commit -m "update git-gui" && |
| 102 | cd ../git && |
Elijah Newren | 031e2f7 | 2021-07-22 05:04:48 +0000 | [diff] [blame] | 103 | git pull --no-rebase -s subtree gui topic_2 && |
Miklos Vajna | 419e383 | 2008-02-28 13:36:54 +0100 | [diff] [blame] | 104 | git ls-files -s >actual && |
| 105 | ( |
Eric Sunshine | c8ce376 | 2018-07-01 20:24:02 -0400 | [diff] [blame] | 106 | echo "100644 $o3 0 git-gui/git-gui.sh" && |
Miklos Vajna | 419e383 | 2008-02-28 13:36:54 +0100 | [diff] [blame] | 107 | echo "100644 $o2 0 git.c" |
| 108 | ) >expected && |
Junio C Hamano | 3af8286 | 2008-05-23 22:28:56 -0700 | [diff] [blame] | 109 | test_cmp expected actual |
Miklos Vajna | 419e383 | 2008-02-28 13:36:54 +0100 | [diff] [blame] | 110 | ' |
| 111 | |
Avery Pennarun | e3cba96 | 2009-11-25 21:23:59 -0500 | [diff] [blame] | 112 | test_expect_success 'initial ambiguous subtree' ' |
| 113 | cd ../git && |
Johannes Schindelin | 5902f5f | 2020-11-18 23:44:38 +0000 | [diff] [blame] | 114 | git reset --hard main && |
Johannes Schindelin | b6211b8 | 2020-09-26 21:04:21 +0000 | [diff] [blame] | 115 | git checkout -b topic_2 && |
Johannes Schindelin | 5902f5f | 2020-11-18 23:44:38 +0000 | [diff] [blame] | 116 | git merge -s ours --no-commit gui/main && |
| 117 | git read-tree --prefix=git-gui2/ -u gui/main && |
Avery Pennarun | e3cba96 | 2009-11-25 21:23:59 -0500 | [diff] [blame] | 118 | git commit -m "Merge git-gui2 as our subdirectory" && |
| 119 | git checkout -b work2 && |
| 120 | git ls-files -s >actual && |
| 121 | ( |
Eric Sunshine | c8ce376 | 2018-07-01 20:24:02 -0400 | [diff] [blame] | 122 | echo "100644 $o1 0 git-gui/git-gui.sh" && |
| 123 | echo "100644 $o1 0 git-gui2/git-gui.sh" && |
Avery Pennarun | e3cba96 | 2009-11-25 21:23:59 -0500 | [diff] [blame] | 124 | echo "100644 $o2 0 git.c" |
| 125 | ) >expected && |
| 126 | test_cmp expected actual |
| 127 | ' |
| 128 | |
| 129 | test_expect_success 'merge using explicit' ' |
| 130 | cd ../git && |
Johannes Schindelin | b6211b8 | 2020-09-26 21:04:21 +0000 | [diff] [blame] | 131 | git reset --hard topic_2 && |
Elijah Newren | 031e2f7 | 2021-07-22 05:04:48 +0000 | [diff] [blame] | 132 | git pull --no-rebase -Xsubtree=git-gui gui topic_2 && |
Avery Pennarun | e3cba96 | 2009-11-25 21:23:59 -0500 | [diff] [blame] | 133 | git ls-files -s >actual && |
| 134 | ( |
Eric Sunshine | c8ce376 | 2018-07-01 20:24:02 -0400 | [diff] [blame] | 135 | echo "100644 $o3 0 git-gui/git-gui.sh" && |
| 136 | echo "100644 $o1 0 git-gui2/git-gui.sh" && |
Avery Pennarun | e3cba96 | 2009-11-25 21:23:59 -0500 | [diff] [blame] | 137 | echo "100644 $o2 0 git.c" |
| 138 | ) >expected && |
| 139 | test_cmp expected actual |
| 140 | ' |
| 141 | |
| 142 | test_expect_success 'merge2 using explicit' ' |
| 143 | cd ../git && |
Johannes Schindelin | b6211b8 | 2020-09-26 21:04:21 +0000 | [diff] [blame] | 144 | git reset --hard topic_2 && |
Elijah Newren | 031e2f7 | 2021-07-22 05:04:48 +0000 | [diff] [blame] | 145 | git pull --no-rebase -Xsubtree=git-gui2 gui topic_2 && |
Avery Pennarun | e3cba96 | 2009-11-25 21:23:59 -0500 | [diff] [blame] | 146 | git ls-files -s >actual && |
| 147 | ( |
Eric Sunshine | c8ce376 | 2018-07-01 20:24:02 -0400 | [diff] [blame] | 148 | echo "100644 $o1 0 git-gui/git-gui.sh" && |
| 149 | echo "100644 $o3 0 git-gui2/git-gui.sh" && |
Avery Pennarun | e3cba96 | 2009-11-25 21:23:59 -0500 | [diff] [blame] | 150 | echo "100644 $o2 0 git.c" |
| 151 | ) >expected && |
| 152 | test_cmp expected actual |
| 153 | ' |
| 154 | |
Junio C Hamano | 1736855 | 2008-02-23 11:08:25 -0800 | [diff] [blame] | 155 | test_done |