Git development
 help / color / mirror / Atom feed
* git-svn: Fails to drop leading path from empty dir name
@ 2009-11-22 13:46 Björn Steinbrink
  2009-11-22 23:25 ` Eric Wong
  0 siblings, 1 reply; 4+ messages in thread
From: Björn Steinbrink @ 2009-11-22 13:46 UTC (permalink / raw)
  To: Eric Wong; +Cc: git

Hi Eric,

the stuff to create empty directories fails to strip leading path
components, e.g. when using
"git svn clone -s svn://whatever/project/trunk".

Instead of creating the empty directory "foo" in the repo root, it
creates "project/trunk/foo".

Ad hoc patch for the test case below.

Björn

diff --git a/t/t9146-git-svn-empty-dirs.sh b/t/t9146-git-svn-empty-dirs.sh
index 5948544..9e22089 100755
--- a/t/t9146-git-svn-empty-dirs.sh
+++ b/t/t9146-git-svn-empty-dirs.sh
@@ -82,4 +82,27 @@ test_expect_success 'git svn mkdirs -r works' '
 	)
 '
 
+test_expect_success 'initialize trunk' '
+	for i in trunk trunk/a trunk/"weird file name"
+	do
+		svn_cmd mkdir -m "mkdir $i" "$svnrepo"/"$i"
+	done
+'
+
+test_expect_success 'clone trunk' 'git svn clone -s "$svnrepo" trunk'
+
+test_expect_success 'empty directories in trunk exist' '
+	(
+		cd cloned &&
+		for i in trunk/a trunk/"weird file name"
+		do
+			if ! test -d "$i"
+			then
+				echo >&2 "$i does not exist"
+				exit 1
+			fi
+		done
+	)
+'
+
 test_done

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-11-23  2:21 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-22 13:46 git-svn: Fails to drop leading path from empty dir name Björn Steinbrink
2009-11-22 23:25 ` Eric Wong
2009-11-22 23:52   ` Björn Steinbrink
2009-11-23  2:21     ` [PATCH] git svn: strip leading path when making empty dirs Eric Wong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox