I am trying to rollback to a previous version of the file/folder Settings.bundle. A file was added to Settings.bundle/en.lproj. If I just delete it I just keep getting missing file warnings (and I don’t want to). So now I am trying to rollback, but it seems to do nothing when I try to run the command:
svn merge -r 15:5 ./Settings.bundle/
Any thoughts?
Should work so far according to Undoing Changes in svn red book. Maybe it’s worth trying to run
svn deleteon those files added since revision 5 (sounds like you don’t need them any longer), commit it and perform svn merge again.Alternatively you can do it manually by running
svn exportof the Settings.bundle to a temp directory. Afterwardssvn deleteon all files added since revision 5 and copy files from temp dir back to your working directory. Now you are ready to commit revision 16.