
Hi,
I am new to working with DevOps repository.
I have created a project that I moved it to a development branch on DevOps. I now need to merge this project to test branch?
Could someone please write how to do it right. I have not found any material showing this process step by step.
Thank you.
Forget a project - that's not a concept you'll work with in version control.
I'll assume you're using Team Foundation Version Control (TFVC).
When you committed your changes to a branch, a changeset was created. It includes all the changes in all files you've committed at once, it contains the comment you provided on check-in, it has a number, metadata such as time and so on.
When you want to merge the Dev branch with its parent branch, go to Source Control Explorer in Visual Studio and choose a workspace with mapping of the parent branch. Then right-click the Dev branch and choose Branching and Merging > Merge. There you can select the target branch and also choose if you want to merge everything or just individual changesets (such as the one you created recently).
Documentation is here: Merge folders and files in Azure Repos.