Reputation: 21924
I have some files in SVN marked
! filename
That I would just like to delete (remove) from SVN...it's kind of a mistake but they are files I deleted from the folder that I should have just typed:
svn delete my-filename
Is there any way to just get rid of these in SVN??
Upvotes: 0
Views: 552
Reputation: 498
You could 'svn update' and then delete them properly using 'svn delete'.
Upvotes: 2