We want to create different repositories for Development , QA and production code.
Is it possible to create separate repositories for the code, and access them at same time so that we can have control over all the code?
What is the standard way we follow to store and access development , QA and prodcution code开发者_JS百科?
You would probably want to have a single team project collection with a team project for all of your code. Within that team project, you would set up a "Main" or "Trunk" with a branch for QA and a sub-branch off the QA branch for Development.
精彩评论