long story short, a mistake was made and now I have at least one hundred files throughout dozens of folders that need to be removed from my repository.
Right now they're all marked as "!" in svn status and I'd like to remove them without manually typing in svn remove blahblah.
Is there a quick way to do this?
This is pretty easy to do with a little shell-scripting-foo.
Here's a breakdown, as requested:
svn status
is piped togrep
grep
pipes every line that starts with a!
(The^
in a regex means beginning of line, and the '\' is necessary to escape the special meaning of!
)awk
then takes the second "argument" (so to speak.. this is the path of the file) fromgrep
and pipes only it to...xargs
which is simply a utility for building an executing shell commands from standard input, which generates and runs the commandsvn del your/file/here
You can also use variations on this line to do all sorts of handy things with
svn
, like recursively adding files to the repo:Also, I just remembered, and wanted to point out that this will not work if you have spaces in your path or filenames. I always forget about that, because I never, ever do. If you have spaces in your paths/filenames, use the following variation on the first example:
(There's probably a more graceful way to do that, so feel free to chime in). In this one, the first
sed
takes the first whitespace character, and any (if any) spaces that follow it, and removes them (basically a trim). Then the second call tosed
replaces any remaining spaces with\
, which is an escaped space, as far as the shell is concerned. Come to think of it, you could probably just wrap it with quotes...