Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I accidentally ran svn add * and added a bunch of files that shouldn't be in the repository. I also have local edits in some files that I want to keep. Is there a simple way to just undo the svn add without reverting the local edits? The main suggestion I see on Google is svn revert, which supposedly undoes the local edits.

share|improve this question

3 Answers

up vote 7 down vote accepted

Unfortunately, if you have a bunch of adds with local modifications, you probably will not be able to do this with one command. My suggestion is to run the "svn status" to get the big picture of your changes and figure out what path(s) you want to revert and then "svn revert" said paths.

share|improve this answer

That would be svn rm --keep-local . The same thing happened to me. :-P

share|improve this answer
   
This had no effect for me. I ran the code as above (including the trailing period) from the base folder. Not sure if I'm missing something. – Eric Jan 20 '12 at 0:47
2  
This should be the accepted answer. – 010110110101 Jan 28 at 4:44
Agreed - this should be the accepted answer. I just tried this and it worked perfectly. – Ted Middleton May 8 at 16:01

If those files are under a directory which has not been committed yet, you can remove the whole directory contents from the next commit by doing:

svn delete --keep-local /path/to/directory

However, if those files are already in the repository and now contain changes that you do not want to commit, you can commit the rest of the files using changelists:

svn changelist somename /file/to/be/committed
svn commit --changelist somename
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.