SVN : remove all deleted files

Hi folks,
Today a new Subversion tips: How to remove from the SVN base deleted files (by rm command).

[pene@donunix] svn status | grep '^\!' | sed 's/! *//' | xargs -I% svn rm %

2 comments:

Dan said...

Thanks! Just what I needed.

const said...

Really thanks! Helped me a lot.