diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-02-23 19:14:13 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-23 19:14:13 -0800 |
commit | d43c07b8ee6684a0df8636a0c849605f0ffc066f (patch) | |
tree | c449f4363cd3daad2a03712dd19d3ee94e038553 /t/t9136-git-svn-recreated-branch-empty-file.sh | |
parent | git-p4: avoid syncing duplicate changes (diff) | |
parent | git-svn: read the dcommit url from the config file on a per remote basis (diff) | |
download | tgif-d43c07b8ee6684a0df8636a0c849605f0ffc066f.tar.xz |
Merge git://git.bogomips.org/git-svn
* git://git.bogomips.org/git-svn:
git-svn: read the dcommit url from the config file on a per remote basis
git-svn: fix delete+add branch tracking with empty files
git-svn: Create leading directories in create-ignore
Diffstat (limited to 't/t9136-git-svn-recreated-branch-empty-file.sh')
-rwxr-xr-x | t/t9136-git-svn-recreated-branch-empty-file.sh | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/t/t9136-git-svn-recreated-branch-empty-file.sh b/t/t9136-git-svn-recreated-branch-empty-file.sh new file mode 100755 index 0000000000..733d16e0b2 --- /dev/null +++ b/t/t9136-git-svn-recreated-branch-empty-file.sh @@ -0,0 +1,12 @@ +#!/bin/sh + +test_description='test recreated svn branch with empty files' + +. ./lib-git-svn.sh +test_expect_success 'load svn dumpfile' ' + svnadmin load "$rawsvnrepo" < "${TEST_DIRECTORY}/t9136/svn.dump" + ' + +test_expect_success 'clone using git svn' 'git svn clone -s "$svnrepo" x' + +test_done |