...
| Code Block |
|---|
// create a new branch to test the pull request git checkout -b test_foopatch_onto_1_8 // now you are on branch test_foopatch_onto_1_8 // let's add the git branch of the contributor as a remote git remote add remote someperson git://github.com/groovy/somepersonsrepo.git // fetch the particular commits git fetch someperson SOMEREFHASHOFTHEPULLREQUESTthe_branch_with_the_changes // merge it in our test branch git merge FETCH_HEAD // test the changes gradle test or gradle test // if all tests pass, then we can safely use the web based merge UI of Github |
...