Eric Wong | b186a26 | 2009-08-12 16:01:59 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2009 Eric Wong |
| 4 | # |
Johannes Schindelin | a881baa | 2020-11-18 23:44:42 +0000 | [diff] [blame] | 5 | test_description='git svn initial main branch is "trunk" if possible' |
| 6 | GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main |
Johannes Schindelin | 334afbc | 2020-11-18 23:44:19 +0000 | [diff] [blame] | 7 | export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME |
| 8 | |
Eric Wong | b186a26 | 2009-08-12 16:01:59 -0700 | [diff] [blame] | 9 | . ./lib-git-svn.sh |
| 10 | |
| 11 | test_expect_success 'setup test repository' ' |
| 12 | mkdir i && |
| 13 | > i/a && |
| 14 | svn_cmd import -m trunk i "$svnrepo/trunk" && |
| 15 | svn_cmd import -m b/a i "$svnrepo/branches/a" && |
| 16 | svn_cmd import -m b/b i "$svnrepo/branches/b" |
| 17 | ' |
| 18 | |
Johannes Schindelin | a881baa | 2020-11-18 23:44:42 +0000 | [diff] [blame] | 19 | test_expect_success 'git svn clone --stdlayout sets up trunk as main' ' |
Eric Wong | b186a26 | 2009-08-12 16:01:59 -0700 | [diff] [blame] | 20 | git svn clone -s "$svnrepo" g && |
| 21 | ( |
| 22 | cd g && |
Elia Pinto | e74ef60 | 2016-01-12 11:49:33 +0000 | [diff] [blame] | 23 | test x$(git rev-parse --verify refs/remotes/origin/trunk^0) = \ |
Johannes Schindelin | a881baa | 2020-11-18 23:44:42 +0000 | [diff] [blame] | 24 | x$(git rev-parse --verify refs/heads/main^0) |
Eric Wong | b186a26 | 2009-08-12 16:01:59 -0700 | [diff] [blame] | 25 | ) |
| 26 | ' |
| 27 | |
| 28 | test_done |