submodule: Use cat instead of echo to avoid DOS line-endings
[git/dscho.git] / t / t9142-git-svn-shallow-clone.sh
blobe21ee5f663ce8333625c5d9d483c42dde3394675
1 #!/bin/sh
3 # Copyright (c) 2009 Eric Wong
6 test_description='git svn shallow clone'
7 . ./lib-git-svn.sh
9 test_expect_success 'setup test repository' '
10 svn_cmd mkdir -m "create standard layout" \
11 "$svnrepo"/trunk "$svnrepo"/branches "$svnrepo"/tags &&
12 svn_cmd cp -m "branch off trunk" \
13 "$svnrepo"/trunk "$svnrepo"/branches/a &&
14 svn_cmd co "$svnrepo"/branches/a &&
16 cd a &&
17 > foo &&
18 svn_cmd add foo &&
19 svn_cmd commit -m "add foo"
20 ) &&
21 start_httpd
24 test_expect_success 'clone trunk with "-r HEAD"' '
25 git svn clone -r HEAD "$svnrepo/trunk" g &&
26 ( cd g && git rev-parse --symbolic --verify HEAD )
29 stop_httpd
31 test_done