tags:

views:

55

answers:

2

I accidentally added a file to my svn working copy that I don't want to check in (a test image). I haven't commited yet, so how do I remove the file from my svn working copy without deleting it?

+7  A: 

svn revert filename

DrJokepu
Awesome, just what I needed! This is why I LOVE StackO!
C. Ross
+2  A: 

If it's in A state, then simple svn revert is what you need.

PiotrLegnica