Is "svn export" supported?

Asked by Erik van Zijst

Looking at client.c I can see client.checkout(). However, I currently need the equivalent of "svn export". Is this offered through subvertpy, or should just do a checkout, followed by something like "find . -name .svn -type d -exec rm -rf {} \;" ?

Cheers,
Erik

Question information

Language:
English Edit question
Status:
Solved
For:
subvertpy Edit question
Assignee:
Jelmer Vernooij Edit question
Solved by:
Jelmer Vernooij
Solved:
Last query:
Last reply:
Revision history for this message
Best Jelmer Vernooij (jelmer) said :
#1

Newer versions of subvertpy (0.8.0 and up, will hopefully be released in the next couple of days) will have support for export.

In existing released versions I guess the simplest option is indeed to do a checkout and then remove all .svn directories.

Revision history for this message
Erik van Zijst (erik-van-zijst) said :
#2

Excellent. Thanks Jelmer.