I recently got into a slight argument with the other developer on my team about the correct way to develop with SVN and Eclipse. My way of developing in multiple branches is by creating new workspaces for each branch. The reason I create new workspaces for each branch is so that I can separate features/bug fixes from each other and from trunk. However, this doesn't mean that I am only supportive of people who use this methodology.
I don't care about how others use SVN as long as they put proper commit messages in the logs so that if anything happens (be it me or anybody else) we could always rollback.
The other developer on my team has a strong believe that the way I am creating new workspaces for each branch is NOT the way SVN was intended for use and grilled me pretty hard on it. They told me "you're not using SVN the way it was intended." The way they use it is by using a single workspace and switching around the directory between branches/trunk during development.
Although I feel this can get messy and confusing quite fast especially in our work environment where we work on multiple branches at once, it is one way people can develop.
Can someone put some clarity into the way I'm supposed to think about developing with multiple branches? Or am I correct as in there is no right or wrong way to do it and just different people prefer different methods?
Thank you