Accept git pull request in Visual Studio
Some preparation steps must be done outside VS:
- Add remote branch:
git remote add <branchName> <branchUrl>
2. Download new branch:
git fetch <branchName>
Now in VS Braches we have new remote with branches. We will merge issue_28 branch that fixes small bug.
We can right click it and checkout, to test changes in pull request.
When changes are ready to be merged, double click on our master branch, then right click it and select Merge From.
Now in Synchronization tab we have all merged changes, press push to finish merge and send all changes to server.
Comments
Comments are closed