[Python-apps-commits] r10702 - in packages/mercurial/trunk/debian/tests (hgsubversion)
vicho at users.alioth.debian.org
vicho at users.alioth.debian.org
Sat Mar 22 15:57:08 UTC 2014
Date: Saturday, March 22, 2014 @ 15:57:07
Author: vicho
Revision: 10702
Make the hgsubversion test a repo that follows the standard layout for svn repositories
Modified:
packages/mercurial/trunk/debian/tests/hgsubversion (contents, properties)
Modified: packages/mercurial/trunk/debian/tests/hgsubversion
===================================================================
--- packages/mercurial/trunk/debian/tests/hgsubversion 2014-03-22 14:53:39 UTC (rev 10701)
+++ packages/mercurial/trunk/debian/tests/hgsubversion 2014-03-22 15:57:07 UTC (rev 10702)
@@ -18,8 +18,11 @@
# Put some content in the repository
svn co svn://127.0.0.1/celesteville
cd celesteville
-echo Cornelius > people
-svn add people
+mkdir trunk tags branches
+svn add trunk tags branches
+svn commit -m "Initial commit"
+echo Cornelius > trunk/people
+svn add trunk/people
svn commit -m "Add people"
cd ..
rm -r celesteville
@@ -28,7 +31,7 @@
hg --config extensions.hgsubversion= clone svn://127.0.0.1/celesteville
cd celesteville
echo Arthur >> people
-hg ci -u "Babar <babar at jungle.org>" -m "Add more people"
+hg commit -u "Babar <babar at jungle.org>" -m "Add more people"
hg --config extensions.hgsubversion= push
cd ..
More information about the Python-apps-commits
mailing list