- Log in to post comments
Search files in subdirectories and add them to SVN recursively
svn status | grep "^\?" | awk '{print $2}' | xargs svn add
In unix, how to delete and copy subversion .svn folders?
- Log in to post comments
you may try this one:
find . -name '.svn' | xargs rm -rf
- Log in to post comments
Thanks for the command. I tried it and it works great except when I was trying to process directories and filenames with spaces.
I made a couple of minor alterations to your command and came up with the following.
svn status | grep "^\?" | sed 's/^\? \+//' | sed 's/ /\\ /' | xargs svn add
Cheers
- Log in to post comments
Requesting unix command