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.
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.
|
|
|||
|
|
|
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. |
|||
|
|
|
That would be |
|||||||||||
|
|
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:
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:
|
|||
|
|