How to resolve merge conflict in pull request in VSTS?

Update Microsoft just added browser based merges. This may get you out of a pickle for small conflicts. And offers improved visualizations of the different scenarios as of Sprint 150. For more complex situations: You have two options to resolve the conflict, reverse-integrate the changes from the target branch (which creates additional merge commits), or … Read more

GitHub clone from pull request?

The easiest way to do that is like this: git fetch origin pull/2/head git checkout -b pullrequest FETCH_HEAD You will now be on a new branch that is on the state of the pull request. You might want to set up an alias by running git config –global alias.pr ‘!f() { git fetch -fu ${2:-origin} … Read more

How to send pull request on Git

Both Git (the software) and GitHub (the web service) have a concept called “pull request”, and unfortunately they are not exactly the same thing. Native Git The native Git request-pull command has a very short manual page with the following one-sentence description: Summarizes the changes between two commits to the standard output, and includes the … Read more