Hi all, looking for a little help here with subversion. In my project I just added some new functionality which isn't quite working they way I want it to. Now I want to save those changes to the repository in the hope that I can eventually goback and work on it at a later date. However, I want to also revert back to the previous version prior to the changes being implemented so I can continue working on other parts of the application. So what is the best way to handle this. Should I just commit my current changes and revert back to the previous version and continue working? Or should I create a branch or something? Not sure what I should do.
Dont quote me on this, but I think that I would commit the current work, then branch the current work, then revert the current work to the previous revision.
Thanks, thats what I did which seems to work fine with one problem. I'm getting conflict statements in my .suo and csproj files. Just wondering if thoses files as well as the .user files should be included in source control.