Sometimes it`s necessary to delete all .svn directories that were created by subversion version control system. This shell command will work on all unix systems:
rm -rf `find . -name .svn`
That`s it!
Sometimes it`s necessary to delete all .svn directories that were created by subversion version control system. This shell command will work on all unix systems:
rm -rf `find . -name .svn`
That`s it!
Trackbacks are closed.
Or like that:
>find . -type d -name .svn -exec rm -rf {} \;
export [-r REV] URL[@PEGREV] [PATH]
export [-r REV] PATH1[@PEGREV] [PATH2]
@lacki
*svn export