How to remove all directories matching a pattern using SVN?

I checked in a huge Eclipse project from my desktop computer to an SVN server. I did this using the command line. However, by mistake, I passed all the compiled classes to the server as well.

For each plug-in, there is a / bin / directory containing compiled classes.

Is there a way to quickly delete all directories on the server that match this template using the command line?

Also, is there a way to tell svn to ignore bin directories by default?

+3
source share
2 answers

From here (for the "optional part"):

  • Click Window โ†’ Preferences
  • Choose Command โ†’ Ignored Resources
  • " " "bin"
  • "", ""

bin svn 1.5?

, , 'svn rm --keep-local' , .

Tortoise ( ( ))

+4

, VonC, , ( ) :

~/.subversion/config

Windows:

HKCU\Software\Tigris.org\Config
+2

Source: https://habr.com/ru/post/1699556/


All Articles