3 test_description='git mv in subdirs'
7 'prepare reference tree' \
9 cp "$TEST_DIRECTORY"/../COPYING path0/COPYING &&
10 git add path0/COPYING &&
14 'moving the file out of subdirectory' \
15 'cd path0 && git mv COPYING ../path1/COPYING'
19 'commiting the change' \
20 'cd .. && git commit -m move-out -a'
23 'checking the commit' \
24 'git diff-tree -r -M --name-status HEAD^ HEAD >actual &&
25 grep "^R100..*path0/COPYING..*path1/COPYING" actual'
28 'moving the file back into subdirectory' \
29 'cd path0 && git mv ../path1/COPYING COPYING'
33 'commiting the change' \
34 'cd .. && git commit -m move-in -a'
37 'checking the commit' \
38 'git diff-tree -r -M --name-status HEAD^ HEAD >actual &&
39 grep "^R100..*path1/COPYING..*path0/COPYING" actual'
42 'mv --dry-run does not move file' \
43 'git mv -n path0/COPYING MOVED &&
44 test -f path0/COPYING &&
48 'checking -k on non-existing file' \
49 'git mv -k idontexist path0'
52 'checking -k on untracked file' \
54 git mv -k untracked1 path0 &&
56 test ! -f path0/untracked1'
59 'checking -k on multiple untracked files' \
61 git mv -k untracked1 untracked2 path0 &&
64 test ! -f path0/untracked1 &&
65 test ! -f path0/untracked2'
68 'checking -f on untracked file with existing target' \
69 'touch path0/untracked1 &&
70 test_must_fail git mv -f untracked1 path0 &&
71 test ! -f .git/index.lock &&
73 test -f path0/untracked1'
75 # clean up the mess in case bad things happen
76 rm -f idontexist untracked1 untracked2 \
77 path0/idontexist path0/untracked1 path0/untracked2 \
82 'moving to absent target with trailing slash' \
83 'test_must_fail git mv path0/COPYING no-such-dir/ &&
84 test_must_fail git mv path0/COPYING no-such-dir// &&
85 git mv path0/ no-such-dir/ &&
86 test_path_is_dir no-such-dir'
93 'moving to existing untracked target with trailing slash' \
95 git mv path0/ path1/ &&
96 test_path_is_dir path1/path0/'
99 'moving to existing tracked target with trailing slash' \
101 >path2/file && git add path2/file &&
102 git mv path1/path0/ path2/ &&
103 test_path_is_dir path2/path0/'
105 test_expect_success \
109 test_expect_success \
110 'adding another file' \
111 'cp "$TEST_DIRECTORY"/../README.md path0/README &&
112 git add path0/README &&
113 git commit -m add2 -a'
115 test_expect_success \
116 'moving whole subdirectory' \
119 test_expect_success \
120 'commiting the change' \
121 'git commit -m dir-move -a'
123 test_expect_success \
124 'checking the commit' \
125 'git diff-tree -r -M --name-status HEAD^ HEAD >actual &&
126 grep "^R100..*path0/COPYING..*path2/COPYING" actual &&
127 grep "^R100..*path0/README..*path2/README" actual'
129 test_expect_success \
130 'succeed when source is a prefix of destination' \
131 'git mv path2/COPYING path2/COPYING-renamed'
133 test_expect_success \
134 'moving whole subdirectory into subdirectory' \
137 test_expect_success \
138 'commiting the change' \
139 'git commit -m dir-move -a'
141 test_expect_success \
142 'checking the commit' \
143 'git diff-tree -r -M --name-status HEAD^ HEAD >actual &&
144 grep "^R100..*path2/COPYING..*path1/path2/COPYING" actual &&
145 grep "^R100..*path2/README..*path1/path2/README" actual'
147 test_expect_success \
148 'do not move directory over existing directory' \
149 'mkdir path0 && mkdir path0/path2 && test_must_fail git mv path2 path0'
151 test_expect_success \
153 'git mv path1/path2/ .'
155 test_expect_success "Michael Cassar's test case" '
156 rm -fr .git papers partA &&
158 mkdir -p papers/unsorted papers/all-papers partA &&
159 echo a > papers/unsorted/Thesis.pdf &&
160 echo b > partA/outline.txt &&
161 echo c > papers/unsorted/_another &&
162 git add papers partA &&
163 T1=$(git write-tree) &&
165 git mv papers/unsorted/Thesis.pdf papers/all-papers/moo-blah.pdf &&
167 T=$(git write-tree) &&
168 git ls-tree -r $T | verbose grep partA/outline.txt
171 rm -fr papers partA path?
173 test_expect_success "Sergey Vlasov's test case" '
180 git commit -m 'initial' &&
184 test_expect_success 'absolute pathname' '(
189 test_create_repo one &&
195 git mv sub "$(pwd)/in" &&
198 git ls-files --error-unmatch in/file
203 test_expect_success 'absolute pathname outside should fail' '(
209 test_create_repo one &&
215 test_must_fail git mv sub "$out/out" &&
218 git ls-files --error-unmatch sub/file
222 test_expect_success 'git mv to move multiple sources into a directory' '
223 rm -fr .git && git init &&
228 git mv dir/a.txt dir/b.txt other &&
229 git ls-files >actual &&
230 { echo other/a.txt; echo other/b.txt; } >expect &&
231 test_cmp expect actual
234 test_expect_success 'git mv should not change sha1 of moved cache entry' '
240 entry="$(git ls-files --stage dirty | cut -f 1)" &&
241 git mv dirty dirty2 &&
242 [ "$entry" = "$(git ls-files --stage dirty2 | cut -f 1)" ] &&
244 git mv dirty2 dirty &&
245 [ "$entry" = "$(git ls-files --stage dirty | cut -f 1)" ]
251 # NB: This test is about the error message
252 # as well as the failure.
253 test_expect_success 'git mv error on conflicted file' '
257 test_when_finished "rm -f conflict" &&
258 cfhash=$(git hash-object -w conflict) &&
259 q_to_tab <<-EOF | git update-index --index-info &&
261 100644 $cfhash 1Qconflict
264 test_must_fail git mv conflict newname 2>actual &&
265 test_i18ngrep "conflicted" actual
268 test_expect_success 'git mv should overwrite symlink to a file' '
273 test_ln_s_add moved symlink &&
275 test_must_fail git mv moved symlink &&
276 git mv -f moved symlink &&
279 test "$(cat symlink)" = 1 &&
280 git update-index --refresh &&
281 git diff-files --quiet
287 test_expect_success 'git mv should overwrite file with a symlink' '
292 test_ln_s_add moved symlink &&
294 test_must_fail git mv symlink moved &&
295 git mv -f symlink moved &&
297 git update-index --refresh &&
298 git diff-files --quiet
302 test_expect_success SYMLINKS 'check moved symlink' '
309 test_expect_success 'setup submodule' '
310 git commit -m initial &&
312 git submodule add ./. sub &&
313 echo content >file &&
315 git commit -m "added sub and file" &&
316 mkdir -p deep/directory/hierarchy &&
317 git submodule add ./. deep/directory/hierarchy/sub &&
318 git commit -m "added another submodule" &&
322 test_expect_success 'git mv cannot move a submodule in a file' '
323 test_must_fail git mv sub file
326 test_expect_success 'git mv moves a submodule with a .git directory and no .gitmodules' '
327 entry="$(git ls-files --stage sub | cut -f 1)" &&
328 git rm .gitmodules &&
332 cp -R -P -p ../.git/modules/sub .git &&
333 GIT_WORK_TREE=. git config --unset core.worktree
336 git mv sub mod/sub &&
338 [ "$entry" = "$(git ls-files --stage mod/sub | cut -f 1)" ] &&
343 git update-index --refresh &&
344 git diff-files --quiet
347 test_expect_success 'git mv moves a submodule with a .git directory and .gitmodules' '
350 git submodule update &&
351 entry="$(git ls-files --stage sub | cut -f 1)" &&
355 cp -R -P -p ../.git/modules/sub .git &&
356 GIT_WORK_TREE=. git config --unset core.worktree
359 git mv sub mod/sub &&
361 [ "$entry" = "$(git ls-files --stage mod/sub | cut -f 1)" ] &&
366 echo mod/sub >expected &&
367 git config -f .gitmodules submodule.sub.path >actual &&
368 test_cmp expected actual &&
369 git update-index --refresh &&
370 git diff-files --quiet
373 test_expect_success 'git mv moves a submodule with gitfile' '
376 git submodule update &&
377 entry="$(git ls-files --stage sub | cut -f 1)" &&
384 [ "$entry" = "$(git ls-files --stage mod/sub | cut -f 1)" ] &&
389 echo mod/sub >expected &&
390 git config -f .gitmodules submodule.sub.path >actual &&
391 test_cmp expected actual &&
392 git update-index --refresh &&
393 git diff-files --quiet
396 test_expect_success 'mv does not complain when no .gitmodules file is found' '
399 git submodule update &&
400 git rm .gitmodules &&
401 entry="$(git ls-files --stage sub | cut -f 1)" &&
403 git mv sub mod/sub 2>actual.err &&
404 test_must_be_empty actual.err &&
406 [ "$entry" = "$(git ls-files --stage mod/sub | cut -f 1)" ] &&
411 git update-index --refresh &&
412 git diff-files --quiet
415 test_expect_success 'mv will error out on a modified .gitmodules file unless staged' '
418 git submodule update &&
419 git config -f .gitmodules foo.bar true &&
420 entry="$(git ls-files --stage sub | cut -f 1)" &&
422 test_must_fail git mv sub mod/sub 2>actual.err &&
423 test -s actual.err &&
425 git diff-files --quiet -- sub &&
426 git add .gitmodules &&
427 git mv sub mod/sub 2>actual.err &&
428 test_must_be_empty actual.err &&
430 [ "$entry" = "$(git ls-files --stage mod/sub | cut -f 1)" ] &&
435 git update-index --refresh &&
436 git diff-files --quiet
439 test_expect_success 'mv issues a warning when section is not found in .gitmodules' '
442 git submodule update &&
443 git config -f .gitmodules --remove-section submodule.sub &&
444 git add .gitmodules &&
445 entry="$(git ls-files --stage sub | cut -f 1)" &&
446 echo "warning: Could not find section in .gitmodules where path=sub" >expect.err &&
448 git mv sub mod/sub 2>actual.err &&
449 test_i18ncmp expect.err actual.err &&
451 [ "$entry" = "$(git ls-files --stage mod/sub | cut -f 1)" ] &&
456 git update-index --refresh &&
457 git diff-files --quiet
460 test_expect_success 'mv --dry-run does not touch the submodule or .gitmodules' '
463 git submodule update &&
465 git mv -n sub mod/sub 2>actual.err &&
467 git diff-index --exit-code HEAD &&
468 git update-index --refresh &&
469 git diff-files --quiet -- sub .gitmodules
472 test_expect_success 'checking out a commit before submodule moved needs manual updates' '
474 git commit -m "moved sub to sub2" &&
475 git checkout -q HEAD^ 2>actual &&
476 test_i18ngrep "^warning: unable to rmdir '\''sub2'\'':" actual &&
477 git status -s sub2 >actual &&
478 echo "?? sub2/" >expected &&
479 test_cmp expected actual &&
480 ! test -f sub/.git &&
482 git submodule update &&
485 git diff-index --exit-code HEAD &&
486 git update-index --refresh &&
487 git diff-files --quiet -- sub .gitmodules &&
488 git status -s sub2 >actual &&
489 test_must_be_empty actual
492 test_expect_success 'mv -k does not accidentally destroy submodules' '
493 git checkout submodule &&
495 git mv -k dummy sub dest &&
496 git status --porcelain >actual &&
497 grep "^R sub -> dest/sub" actual &&
502 test_expect_success 'moving a submodule in nested directories' '
505 git mv directory ../ &&
506 # git status would fail if the update of linking git dir to
507 # work dir of the submodule failed.
509 git config -f ../.gitmodules submodule.deep/directory/hierarchy/sub.path >../actual &&
510 echo "directory/hierarchy/sub" >../expect
512 test_cmp expect actual
515 test_expect_success 'moving nested submodules' '
516 git commit -am "cleanup commit" &&
517 mkdir sub_nested_nested &&
518 (cd sub_nested_nested &&
519 touch nested_level2 &&
522 git commit -m "nested level 2"
526 touch nested_level1 &&
529 git commit -m "nested level 1" &&
530 git submodule add ../sub_nested_nested &&
531 git commit -m "add nested level 2"
533 git submodule add ./sub_nested nested_move &&
534 git commit -m "add nested_move" &&
535 git submodule update --init --recursive &&
536 git mv nested_move sub_nested_moved &&