blob: 159afa7ac81396e1d9915335f030cd0fcc8b7b3f [file] [log] [blame]
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +01001#!/bin/sh
2
3test_description='pull options'
4
5. ./test-lib.sh
6
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +01007test_expect_success 'setup' '
8 mkdir parent &&
9 (cd parent && git init &&
10 echo one >file && git add file &&
11 git commit -m one)
12'
13
Alex Henried18c9502020-03-09 21:54:20 -060014test_expect_success 'git pull -q --no-rebase' '
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +010015 mkdir clonedq &&
Junio C Hamano13e65fe2010-02-24 10:22:05 -080016 (cd clonedq && git init &&
Alex Henried18c9502020-03-09 21:54:20 -060017 git pull -q --no-rebase "../parent" >out 2>err &&
Junio C Hamanoca8d1482013-06-09 11:29:20 -070018 test_must_be_empty err &&
19 test_must_be_empty out)
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +010020'
21
Peter Eisentrautce4c4d42013-03-14 22:26:08 -040022test_expect_success 'git pull -q --rebase' '
23 mkdir clonedqrb &&
24 (cd clonedqrb && git init &&
25 git pull -q --rebase "../parent" >out 2>err &&
Junio C Hamanoca8d1482013-06-09 11:29:20 -070026 test_must_be_empty err &&
27 test_must_be_empty out &&
Peter Eisentrautce4c4d42013-03-14 22:26:08 -040028 git pull -q --rebase "../parent" >out 2>err &&
Junio C Hamanoca8d1482013-06-09 11:29:20 -070029 test_must_be_empty err &&
30 test_must_be_empty out)
Peter Eisentrautce4c4d42013-03-14 22:26:08 -040031'
32
Alex Henried18c9502020-03-09 21:54:20 -060033test_expect_success 'git pull --no-rebase' '
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +010034 mkdir cloned &&
Junio C Hamano13e65fe2010-02-24 10:22:05 -080035 (cd cloned && git init &&
Alex Henried18c9502020-03-09 21:54:20 -060036 git pull --no-rebase "../parent" >out 2>err &&
Junio C Hamano13e65fe2010-02-24 10:22:05 -080037 test -s err &&
Junio C Hamanoca8d1482013-06-09 11:29:20 -070038 test_must_be_empty out)
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +010039'
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +010040
Peter Eisentrautce4c4d42013-03-14 22:26:08 -040041test_expect_success 'git pull --rebase' '
42 mkdir clonedrb &&
43 (cd clonedrb && git init &&
44 git pull --rebase "../parent" >out 2>err &&
45 test -s err &&
Junio C Hamanoca8d1482013-06-09 11:29:20 -070046 test_must_be_empty out)
Peter Eisentrautce4c4d42013-03-14 22:26:08 -040047'
48
Alex Henried18c9502020-03-09 21:54:20 -060049test_expect_success 'git pull -v --no-rebase' '
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +010050 mkdir clonedv &&
Junio C Hamano13e65fe2010-02-24 10:22:05 -080051 (cd clonedv && git init &&
Alex Henried18c9502020-03-09 21:54:20 -060052 git pull -v --no-rebase "../parent" >out 2>err &&
Junio C Hamano13e65fe2010-02-24 10:22:05 -080053 test -s err &&
Junio C Hamanoca8d1482013-06-09 11:29:20 -070054 test_must_be_empty out)
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +010055'
56
Peter Eisentrautce4c4d42013-03-14 22:26:08 -040057test_expect_success 'git pull -v --rebase' '
58 mkdir clonedvrb &&
59 (cd clonedvrb && git init &&
60 git pull -v --rebase "../parent" >out 2>err &&
61 test -s err &&
Junio C Hamanoca8d1482013-06-09 11:29:20 -070062 test_must_be_empty out)
Peter Eisentrautce4c4d42013-03-14 22:26:08 -040063'
64
Alex Henried18c9502020-03-09 21:54:20 -060065test_expect_success 'git pull -v -q --no-rebase' '
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +010066 mkdir clonedvq &&
Junio C Hamano13e65fe2010-02-24 10:22:05 -080067 (cd clonedvq && git init &&
Alex Henried18c9502020-03-09 21:54:20 -060068 git pull -v -q --no-rebase "../parent" >out 2>err &&
Junio C Hamanoca8d1482013-06-09 11:29:20 -070069 test_must_be_empty out &&
70 test_must_be_empty err)
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +010071'
72
Alex Henried18c9502020-03-09 21:54:20 -060073test_expect_success 'git pull -q -v --no-rebase' '
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +010074 mkdir clonedqv &&
Junio C Hamano13e65fe2010-02-24 10:22:05 -080075 (cd clonedqv && git init &&
Alex Henried18c9502020-03-09 21:54:20 -060076 git pull -q -v --no-rebase "../parent" >out 2>err &&
Junio C Hamanoca8d1482013-06-09 11:29:20 -070077 test_must_be_empty out &&
Junio C Hamano13e65fe2010-02-24 10:22:05 -080078 test -s err)
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +010079'
Denton Liud540b702019-04-17 11:23:27 +010080test_expect_success 'git pull --cleanup errors early on invalid argument' '
81 mkdir clonedcleanup &&
82 (cd clonedcleanup && git init &&
Alex Henried18c9502020-03-09 21:54:20 -060083 test_must_fail git pull --no-rebase --cleanup invalid "../parent" >out 2>err &&
Denton Liud540b702019-04-17 11:23:27 +010084 test_must_be_empty out &&
85 test -s err)
86'
87
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +010088
Junio C Hamanobba53222010-02-24 10:22:06 -080089test_expect_success 'git pull --force' '
90 mkdir clonedoldstyle &&
91 (cd clonedoldstyle && git init &&
92 cat >>.git/config <<-\EOF &&
93 [remote "one"]
94 url = ../parent
95 fetch = refs/heads/master:refs/heads/mirror
96 [remote "two"]
97 url = ../parent
98 fetch = refs/heads/master:refs/heads/origin
99 [branch "master"]
100 remote = two
101 merge = refs/heads/master
102 EOF
103 git pull two &&
104 test_commit A &&
105 git branch -f origin &&
106 git pull --all --force
107 )
108'
109
Junio C Hamanoe6cc5102010-02-24 11:02:05 -0800110test_expect_success 'git pull --all' '
111 mkdir clonedmulti &&
112 (cd clonedmulti && git init &&
113 cat >>.git/config <<-\EOF &&
114 [remote "one"]
115 url = ../parent
116 fetch = refs/heads/*:refs/remotes/one/*
117 [remote "two"]
118 url = ../parent
119 fetch = refs/heads/*:refs/remotes/two/*
120 [branch "master"]
121 remote = one
122 merge = refs/heads/master
123 EOF
124 git pull --all
125 )
126'
127
Paul Tan5504f132015-05-29 19:44:44 +0800128test_expect_success 'git pull --dry-run' '
129 test_when_finished "rm -rf clonedry" &&
130 git init clonedry &&
131 (
132 cd clonedry &&
133 git pull --dry-run ../parent &&
134 test_path_is_missing .git/FETCH_HEAD &&
135 test_path_is_missing .git/refs/heads/master &&
136 test_path_is_missing .git/index &&
137 test_path_is_missing file
138 )
139'
140
Paul Taneb2a8d92015-06-02 22:22:52 +0800141test_expect_success 'git pull --all --dry-run' '
142 test_when_finished "rm -rf cloneddry" &&
143 git init clonedry &&
144 (
145 cd clonedry &&
146 git remote add origin ../parent &&
147 git pull --all --dry-run &&
148 test_path_is_missing .git/FETCH_HEAD &&
149 test_path_is_missing .git/refs/remotes/origin/master &&
150 test_path_is_missing .git/index &&
151 test_path_is_missing file
152 )
153'
154
Junio C Hamano09c2cb82016-03-18 13:21:09 -0700155test_expect_success 'git pull --allow-unrelated-histories' '
156 test_when_finished "rm -fr src dst" &&
157 git init src &&
158 (
159 cd src &&
160 test_commit one &&
161 test_commit two
162 ) &&
163 git clone src dst &&
164 (
165 cd src &&
166 git checkout --orphan side HEAD^ &&
167 test_commit three
168 ) &&
169 (
170 cd dst &&
171 test_must_fail git pull ../src side &&
172 git pull --allow-unrelated-histories ../src side
173 )
174'
175
W. Trevor King3a4d2c72017-10-12 11:35:42 -0700176test_expect_success 'git pull does not add a sign-off line' '
177 test_when_finished "rm -fr src dst actual" &&
178 git init src &&
179 test_commit -C src one &&
180 git clone src dst &&
181 test_commit -C src two &&
182 git -C dst pull --no-ff &&
183 git -C dst show -s --pretty="format:%(trailers)" HEAD >actual &&
184 test_must_be_empty actual
185'
186
187test_expect_success 'git pull --no-signoff does not add sign-off line' '
188 test_when_finished "rm -fr src dst actual" &&
189 git init src &&
190 test_commit -C src one &&
191 git clone src dst &&
192 test_commit -C src two &&
193 git -C dst pull --no-signoff --no-ff &&
194 git -C dst show -s --pretty="format:%(trailers)" HEAD >actual &&
195 test_must_be_empty actual
196'
197
198test_expect_success 'git pull --signoff add a sign-off line' '
199 test_when_finished "rm -fr src dst expected actual" &&
200 echo "Signed-off-by: $GIT_COMMITTER_NAME <$GIT_COMMITTER_EMAIL>" >expected &&
201 git init src &&
202 test_commit -C src one &&
203 git clone src dst &&
204 test_commit -C src two &&
205 git -C dst pull --signoff --no-ff &&
206 git -C dst show -s --pretty="format:%(trailers)" HEAD >actual &&
207 test_cmp expected actual
208'
209
210test_expect_success 'git pull --no-signoff flag cancels --signoff flag' '
211 test_when_finished "rm -fr src dst actual" &&
212 git init src &&
213 test_commit -C src one &&
214 git clone src dst &&
215 test_commit -C src two &&
216 git -C dst pull --signoff --no-signoff --no-ff &&
217 git -C dst show -s --pretty="format:%(trailers)" HEAD >actual &&
218 test_must_be_empty actual
219'
220
Tuncer Ayaz7f87aff2008-11-15 01:14:24 +0100221test_done