aboutsummaryrefslogtreecommitdiff
path: root/t/t7003-filter-branch.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-07-12 13:51:37 -0700
committerJunio C Hamano <gitster@pobox.com>2012-07-12 14:23:42 -0700
commit44b85e89d70da5ee7fc688d4a9c021f6a419b363 (patch)
tree06d22efd420072ec0657f85ac973e543039238a2 /t/t7003-filter-branch.sh
parentbe21d167b2a819fd2b4991a395e95906b3cb176a (diff)
downloadgit-44b85e89d70da5ee7fc688d4a9c021f6a419b363.tar.gz
git-44b85e89d70da5ee7fc688d4a9c021f6a419b363.tar.xz
t7003: add test to filter a branch with a commit at epoch
Running filter-branch on a history that has a commit with timestamp at epoch used to fail, but it should have been fixed. Add test to make sure it won't break again. Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7003-filter-branch.sh')
-rwxr-xr-xt/t7003-filter-branch.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/t/t7003-filter-branch.sh b/t/t7003-filter-branch.sh
index e0227730d..4d13e10de 100755
--- a/t/t7003-filter-branch.sh
+++ b/t/t7003-filter-branch.sh
@@ -5,7 +5,8 @@ test_description='git filter-branch'
test_expect_success 'setup' '
test_commit A &&
- test_commit B &&
+ GIT_COMMITTER_DATE="@0 +0000" GIT_AUTHOR_DATE="@0 +0000" &&
+ test_commit --notick B &&
git checkout -b branch B &&
test_commit D &&
mkdir dir &&