3 test_description
='git filter-branch'
7 lower
=$
(echo $1 |
tr '[A-Z]' '[a-z]')
15 test_expect_success
'setup' '
18 git checkout -b branch B
34 test_expect_success
'rewrite identically' '
35 git filter-branch branch
37 test_expect_success
'result is really identical' '
38 test $H = $(git rev-parse HEAD)
41 test_expect_success
'rewrite bare repository identically' '
42 (git config core.bare true && cd .git &&
43 git filter-branch branch > filter-output 2>&1 &&
44 ! fgrep fatal filter-output)
46 git config core.bare false
47 test_expect_success
'result is really identical' '
48 test $H = $(git rev-parse HEAD)
51 test_expect_success
'rewrite, renaming a specific file' '
52 git filter-branch -f --tree-filter "mv d doh || :" HEAD
55 test_expect_success
'test that the file was renamed' '
56 test d = "$(git show HEAD:doh --)" &&
62 test_expect_success
'rewrite, renaming a specific directory' '
63 git filter-branch -f --tree-filter "mv dir diroh || :" HEAD
66 test_expect_success
'test that the directory was renamed' '
67 test dir/d = "$(git show HEAD:diroh/d --)" &&
70 ! test -d diroh/dir &&
72 test dir/d = "$(cat diroh/d)"
76 test_expect_success
'rewrite one branch, keeping a side branch' '
77 git branch modD oldD &&
78 git filter-branch -f --tree-filter "mv b boh || :" D..modD
81 test_expect_success
'common ancestor is still common (unchanged)' '
82 test "$(git merge-base modD D)" = "$(git rev-parse B)"
85 test_expect_success
'filter subdirectory only' '
90 git commit -m "subdir" &&
93 git commit -m "not subdir" a &&
94 echo A > subdir/new &&
96 git commit -m "again subdir" subdir/new &&
99 git commit -m "again not subdir" &&
101 git branch sub-earlier HEAD~2 &&
102 git filter-branch -f --subdirectory-filter subdir \
103 refs/heads/sub refs/heads/sub-earlier
106 test_expect_success
'subdirectory filter result looks okay' '
107 test 2 = $(git rev-list sub | wc -l) &&
109 test_must_fail git show sub:subdir &&
110 git show sub-earlier:new &&
111 test_must_fail git show sub-earlier:subdir
114 test_expect_success
'more setup' '
115 git checkout master &&
117 echo A > subdir/new &&
118 git add subdir/new &&
120 git commit -m "subdir on master" subdir/new &&
123 git commit -m "again subdir on master" &&
127 test_expect_success
'use index-filter to move into a subdirectory' '
128 git branch directorymoved &&
129 git filter-branch -f --index-filter \
130 "git ls-files -s | sed \"s-\\t-&newsubdir/-\" |
131 GIT_INDEX_FILE=\$GIT_INDEX_FILE.new \
132 git update-index --index-info &&
133 mv \"\$GIT_INDEX_FILE.new\" \"\$GIT_INDEX_FILE\"" directorymoved &&
134 test -z "$(git diff HEAD directorymoved:newsubdir)"'
136 test_expect_success
'stops when msg filter fails' '
137 old=$(git rev-parse HEAD) &&
138 test_must_fail git filter-branch -f --msg-filter false HEAD &&
139 test $old = $(git rev-parse HEAD) &&
143 test_expect_success
'author information is preserved' '
147 GIT_AUTHOR_NAME="B V Uips" git commit -m bvuips &&
148 git branch preserved-author &&
149 git filter-branch -f --msg-filter "cat; \
150 test \$GIT_COMMIT != $(git rev-parse master) || \
153 test 1 = $(git rev-list --author="B V Uips" preserved-author | wc -l)
156 test_expect_success
"remove a certain author's commits" '
160 git branch removed-author &&
161 git filter-branch -f --commit-filter "\
162 if [ \"\$GIT_AUTHOR_NAME\" = \"B V Uips\" ];\
166 git commit-tree \"\$@\";\
167 fi" removed-author &&
168 cnt1=$(git rev-list master | wc -l) &&
169 cnt2=$(git rev-list removed-author | wc -l) &&
170 test $cnt1 -eq $(($cnt2 + 1)) &&
171 test 0 = $(git rev-list --author="B V Uips" removed-author | wc -l)
174 test_expect_success
'barf on invalid name' '
175 test_must_fail git filter-branch -f master xy-problem &&
176 test_must_fail git filter-branch -f HEAD^
179 test_expect_success
'"map" works in commit filter' '
180 git filter-branch -f --commit-filter "\
181 parent=\$(git rev-parse \$GIT_COMMIT^) &&
182 mapped=\$(map \$parent) &&
183 actual=\$(echo \"\$@\" | sed \"s/^.*-p //\") &&
184 test \$mapped = \$actual &&
185 git commit-tree \"\$@\";" master~2..master &&
186 git rev-parse --verify master
189 test_expect_success
'Name needing quotes' '
191 git checkout -b rerere A &&
196 git commit -m "Adding a file" &&
197 git filter-branch --tree-filter "rm -fr foo" &&
198 test_must_fail git ls-files --error-unmatch "foo/$name" &&
199 test $(git rev-parse --verify rerere) != $(git rev-parse --verify A)
203 test_expect_success
'Subdirectory filter with disappearing trees' '
205 git checkout master &&
211 git commit -m "Adding foo" &&
215 git commit -m "Removing foo" &&
221 git commit -m "Re-adding foo" &&
223 git filter-branch -f --subdirectory-filter foo &&
224 test $(git rev-list master | wc -l) = 3
227 test_expect_success
'Tag name filtering retains tag message' '
229 git cat-file tag T > expect &&
230 git filter-branch -f --tag-name-filter cat &&
231 git cat-file tag T > actual &&
232 test_cmp expect actual
235 faux_gpg_tag
='object XXXXXX
238 tagger T A Gger <tagger@example.com> 1206026339 -0500
240 This is a faux gpg signed tag.
241 -----BEGIN PGP SIGNATURE-----
242 Version: FauxGPG v0.0.0 (FAUX/Linux)
244 gdsfoewhxu/6l06f1kxyxhKdZkrcbaiOMtkJUA9ITAc1mlamh0ooasxkH1XwMbYQ
245 acmwXaWET20H0GeAGP+7vow=
247 -----END PGP SIGNATURE-----
249 test_expect_success
'Tag name filtering strips gpg signature' '
250 sha1=$(git rev-parse HEAD) &&
251 sha1t=$(echo "$faux_gpg_tag" | sed -e s/XXXXXX/$sha1/ | git mktag) &&
252 git update-ref "refs/tags/S" "$sha1t" &&
253 echo "$faux_gpg_tag" | sed -e s/XXXXXX/$sha1/ | head -n 6 > expect &&
254 git filter-branch -f --tag-name-filter cat &&
255 git cat-file tag S > actual &&
256 test_cmp expect actual
259 test_expect_success
'Tag name filtering allows slashes in tag names' '
260 git tag -m tag-with-slash X/1 &&
261 git cat-file tag X/1 | sed -e s,X/1,X/2, > expect &&
262 git filter-branch -f --tag-name-filter "echo X/2" &&
263 git cat-file tag X/2 > actual &&
264 test_cmp expect actual