Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 1fdf6ee6f81b31b299a8039832f45290faa4583a authored by Junio C Hamano on 06 August 2008, 19:44:55 UTC
GIT 1.6.0-rc2
Tip revision: 1fdf6ee
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" < ../t9121/renamed-dir.dump
	'

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

test_done

back to top