There are two ways of doing this
svn export . ../new_dir
or
find . -name .svn -prune -exec rm -rfv {} \;
Either way, both will work. I personally use export, because if there is a problem it means that I do not have to checkout an entire project
|
There are two ways of doing this svn export . ../new_dir or find . -name .svn -prune -exec rm -rfv {} \; Either way, both will work. I personally use export, because if there is a problem it means that I do not have to checkout an entire project |
|