]> git.ipfire.org Git - thirdparty/git.git/blame - t/t9145-git-svn-master-branch.sh
The fifteenth batch
[thirdparty/git.git] / t / t9145-git-svn-master-branch.sh
CommitLineData
b186a261
EW
1#!/bin/sh
2#
3# Copyright (c) 2009 Eric Wong
4#
a881baa2
JS
5test_description='git svn initial main branch is "trunk" if possible'
6GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME=main
334afbc7
JS
7export GIT_TEST_DEFAULT_INITIAL_BRANCH_NAME
8
b186a261
EW
9. ./lib-git-svn.sh
10
11test_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
a881baa2 19test_expect_success 'git svn clone --stdlayout sets up trunk as main' '
b186a261
EW
20 git svn clone -s "$svnrepo" g &&
21 (
22 cd g &&
e74ef604 23 test x$(git rev-parse --verify refs/remotes/origin/trunk^0) = \
a881baa2 24 x$(git rev-parse --verify refs/heads/main^0)
b186a261
EW
25 )
26'
27
28test_done