By abhishek | Wed, 09/15/2010 - 14:33 Log in to post comments 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? Log in to post comments sudo rm -R .svn sudo rm -R .svn Log in to post comments you may try this one: find . you may try this one: find . -name '.svn' | xargs rm -rf Log in to post comments 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 Log in to post comments Simplier Try this: svn add --force DIR/* Log in to post comments Thanks Thanks, did the trick for me. Log in to post comments svn code tip
Requesting unix command In unix, how to delete and copy subversion .svn folders? Log in to post comments
you may try this one: find . you may try this one: find . -name '.svn' | xargs rm -rf Log in to post comments
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 Log in to post comments
Requesting unix command
In unix, how to delete and copy subversion .svn folders?
sudo rm -R .svn
sudo rm -R .svn
you may try this one: find .
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.