2009-07-20 11:06:24 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2009 Eric Wong
|
|
|
|
#
|
|
|
|
|
|
|
|
test_description='git svn shallow clone'
|
|
|
|
. ./lib-git-svn.sh
|
|
|
|
|
|
|
|
test_expect_success 'setup test repository' '
|
|
|
|
svn_cmd mkdir -m "create standard layout" \
|
|
|
|
"$svnrepo"/trunk "$svnrepo"/branches "$svnrepo"/tags &&
|
|
|
|
svn_cmd cp -m "branch off trunk" \
|
|
|
|
"$svnrepo"/trunk "$svnrepo"/branches/a &&
|
|
|
|
svn_cmd co "$svnrepo"/branches/a &&
|
|
|
|
(
|
|
|
|
cd a &&
|
|
|
|
> foo &&
|
|
|
|
svn_cmd add foo &&
|
|
|
|
svn_cmd commit -m "add foo"
|
2010-12-14 19:20:38 +01:00
|
|
|
) &&
|
2016-07-23 06:26:08 +02:00
|
|
|
maybe_start_httpd
|
2009-07-20 11:06:24 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
test_expect_success 'clone trunk with "-r HEAD"' '
|
|
|
|
git svn clone -r HEAD "$svnrepo/trunk" g &&
|
|
|
|
( cd g && git rev-parse --symbolic --verify HEAD )
|
|
|
|
'
|
|
|
|
|
2009-07-25 11:11:39 +02:00
|
|
|
stop_httpd
|
|
|
|
|
2009-07-20 11:06:24 +02:00
|
|
|
test_done
|