Life is more than this
Life is more than this

Reputation: 267

How to move the code from Dev to QA branches in TFS?

Intro:

Dev branch has the code that is deployed to the development environment and where development happens, QA branch is what gets deployed to the QA environment so QAs can test.

My question is:

After I am done working on the code in the Dev environment and has checked it into the Dev branch. What is the easiest way to move the changeset (or the code I have changed in Dev) from the Dev branch to the QA branch?

Upvotes: 1

Views: 6022

Answers (1)

DaveShaw
DaveShaw

Reputation: 52808

You appear to be very new to Source Control and Branching and Merging process. The process of moving one changeset (or a range of changesets) from a branch to another is called merging.

I suggest you look into Merge Folders and Files on MSDN that explains how to perform a merge.

Other excellent resources that might aid your understanding are the Wrox ALM and TFS books and the ALM Rangers Branching and Merging Guidance (in increasing in technical level order).

Upvotes: 5

Related Questions