I'm working on an ASP.NET app that uses VSS for source control. WE have a PROD server and TEST server. As things get built, they're published to the TEST server for user testing. Once accepted, they're moved to the PROD server.
I need to work on some new functionality in a sandbox without affecting the existing build in TEST. I don't want what I'm working on to get mixed in with the code base that's TEST code already published because I need to be able to make fixes to TEST code without worrying about what I'm doing in the sandbox.
How do you keep the TEST & sandbox environments exclusive?
Thanks