http://blog.spreedly.com/2014/06/24/merge-pull-request-considered-harmful/#.VecUstNVhBd
git am -3 <url>
where url is the Pull Request url.- Conflicts? I fix ’em and then
git am --continue
- Single commit? Append message:
git commit --amend
(tip: addCloses #XX
to auto close the PR) - If multiple commits:
git rebase -i origin/master
squash em!