1
0
Fork 0
mirror of https://github.com/git/git.git synced 2024-06-18 20:09:54 +02:00
git/t/t9135-git-svn-moved-branch-...
Eric Wong b186a261b1 svn: initial "master" points to trunk if possible
Since "trunk" is a convention for the main development branch in
the SVN world, try to make that the master branch upon initial
checkout if it exists.  This is probably less surprising based
on user requests.

t9135 was the only test which relied on the previous behavior
and thus needed to be modified.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
2009-08-12 21:41:09 -07:00

22 lines
434 B
Bash
Executable File

#!/bin/sh
test_description='test moved svn branch with missing empty files'
. ./lib-git-svn.sh
test_expect_success 'load svn dumpfile' '
svnadmin load "$rawsvnrepo" < "${TEST_DIRECTORY}/t9135/svn.dump"
'
test_expect_success 'clone using git svn' 'git svn clone -s "$svnrepo" x'
test_expect_success 'test that b1 exists and is empty' '
(
cd x &&
git reset --hard branch-c &&
test -f b1 &&
! test -s b1
)
'
test_done