Git 2.45
[git/gitster.git] / t / t9167-git-svn-cmd-branch-subproject.sh
blobd8128430a8d0833b3806aa7211c17008146cec92
1 #!/bin/sh
3 # Copyright (c) 2013 Tobias Schulte
6 test_description='git svn branch for subproject clones'
8 . ./lib-git-svn.sh
10 test_expect_success 'initialize svnrepo' '
11 mkdir import &&
13 cd import &&
14 mkdir -p trunk/project branches tags &&
16 cd trunk/project &&
17 echo foo > foo
18 ) &&
19 svn_cmd import -m "import for git-svn" . "$svnrepo" >/dev/null
20 ) &&
21 rm -rf import &&
22 svn_cmd co "$svnrepo"/trunk/project trunk/project &&
24 cd trunk/project &&
25 echo bar >> foo &&
26 svn_cmd ci -m "updated trunk"
27 ) &&
28 rm -rf trunk
31 test_expect_success 'import into git' '
32 git svn init --trunk=trunk/project --branches=branches/*/project \
33 --tags=tags/*/project "$svnrepo" &&
34 git svn fetch &&
35 git checkout remotes/origin/trunk
38 test_expect_success 'git svn branch tests' '
39 test_must_fail git svn branch a &&
40 git svn branch --parents a &&
41 test_must_fail git svn branch -t tag1 &&
42 git svn branch --parents -t tag1 &&
43 test_must_fail git svn branch --tag tag2 &&
44 git svn branch --parents --tag tag2 &&
45 test_must_fail git svn tag tag3 &&
46 git svn tag --parents tag3
49 test_done