Add files to SVN recursively via command line
Search files in subdirectories and add them to SVN recursively
svn status | grep "^\?" | awk '{print $2}' | xargs svn add
Search files in subdirectories and add them to SVN recursively
svn status | grep "^\?" | awk '{print $2}' | xargs svn add
Requesting unix command
In unix, how to delete and copy subversion .svn folders?
sudo rm -R .svn
In reply to Requesting unix command by Navsingh from … (not verified)
sudo rm -R .svn
you may try this one: find .
In reply to Requesting unix command by Navsingh from … (not verified)
you may try this one:
find . -name '.svn' | xargs rm -rf
Spaces cause issues
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
Simplier
Try this: svn add --force DIR/*
Thanks
Thanks, did the trick for me.