Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 661763abf6e13eabf0aa1a3eefd364d32da8f4ad authored by Junio C Hamano on 25 February 2009, 22:50:52 UTC
GIT 1.6.2-rc2
Tip revision: 661763a
t9121-git-svn-fetch-renamed-dir.sh
#!/bin/sh
#
# Copyright (c) 2008 Santhosh Kumar Mani


test_description='git svn can fetch renamed directories'

. ./lib-git-svn.sh

test_expect_success 'load repository with renamed directory' '
	svnadmin load -q "$rawsvnrepo" < "$TEST_DIRECTORY"/t9121/renamed-dir.dump
	'

test_expect_success 'init and fetch repository' '
	git svn init "$svnrepo/newname" &&
	git svn fetch
	'

test_done

back to top