git-stash: fix "no arguments" case in documentation
[git/dscho.git] / t / t7003-filter-branch.sh
blobf00c262e450f9ba23b8e065bce2e4780185821af
1 #!/bin/sh
3 test_description='git-filter-branch'
4 . ./test-lib.sh
6 make_commit () {
7 lower=$(echo $1 | tr A-Z a-z)
8 echo $lower > $lower
9 git add $lower
10 test_tick
11 git commit -m $1
12 git tag $1
15 test_expect_success 'setup' '
16 make_commit A
17 make_commit B
18 git checkout -b branch B
19 make_commit D
20 make_commit E
21 git checkout master
22 make_commit C
23 git checkout branch
24 git merge C
25 git tag F
26 make_commit G
27 make_commit H
30 H=$(git-rev-parse H)
32 test_expect_success 'rewrite identically' '
33 git-filter-branch H2
36 test_expect_success 'result is really identical' '
37 test $H = $(git-rev-parse H2)
40 test_expect_success 'rewrite, renaming a specific file' '
41 git-filter-branch --tree-filter "mv d doh || :" H3
44 test_expect_success 'test that the file was renamed' '
45 test d = $(git show H3:doh)
48 git tag oldD H3~4
49 test_expect_success 'rewrite one branch, keeping a side branch' '
50 git-filter-branch --tree-filter "mv b boh || :" modD D..oldD
53 test_expect_success 'common ancestor is still common (unchanged)' '
54 test "$(git-merge-base modD D)" = "$(git-rev-parse B)"
57 test_expect_success 'filter subdirectory only' '
58 mkdir subdir &&
59 touch subdir/new &&
60 git add subdir/new &&
61 test_tick &&
62 git commit -m "subdir" &&
63 echo H > a &&
64 test_tick &&
65 git commit -m "not subdir" a &&
66 echo A > subdir/new &&
67 test_tick &&
68 git commit -m "again subdir" subdir/new &&
69 git rm a &&
70 test_tick &&
71 git commit -m "again not subdir" &&
72 git-filter-branch --subdirectory-filter subdir sub
75 test_expect_success 'subdirectory filter result looks okay' '
76 test 2 = $(git-rev-list sub | wc -l) &&
77 git show sub:new &&
78 ! git show sub:subdir
81 test_expect_success 'setup and filter history that requires --full-history' '
82 git checkout master &&
83 mkdir subdir &&
84 echo A > subdir/new &&
85 git add subdir/new &&
86 test_tick &&
87 git commit -m "subdir on master" subdir/new &&
88 git rm a &&
89 test_tick &&
90 git commit -m "again subdir on master" &&
91 git merge branch &&
92 git-filter-branch --subdirectory-filter subdir sub-master
95 test_expect_success 'subdirectory filter result looks okay' '
96 test 3 = $(git-rev-list -1 --parents sub-master | wc -w) &&
97 git show sub-master^:new &&
98 git show sub-master^2:new &&
99 ! git show sub:subdir
102 test_expect_success 'use index-filter to move into a subdirectory' '
103 git-filter-branch --index-filter \
104 "git-ls-files -s | sed \"s-\\t-&newsubdir/-\" |
105 GIT_INDEX_FILE=\$GIT_INDEX_FILE.new \
106 git-update-index --index-info &&
107 mv \$GIT_INDEX_FILE.new \$GIT_INDEX_FILE" directorymoved &&
108 test -z "$(git diff HEAD directorymoved:newsubdir)"'
110 test_done