<div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">See question from subject line. How can I merge a pull request without<br>
adding a new commit stating the merge? Is there some kind of ff or<br>
cherry-pick available through front end?<br></blockquote><div><br></div><div>Hi,<div><br></div><div>You can't do a cherry pick or rebase through the front-end. I think adding this 'merge pull request' commit is a good idea, since it shows more information about where the commit came from.</div>

<div><br></div><div>But if you want, you can use 'git rebase' to avoid the merge commit. In the case of my 'gitignore' branch, you could have run the following commands:</div></div><div><br></div><div>    git remote add ndbroadbent git://<a href="http://github.com/ndbroadbent/geany-plugins.git">github.com/ndbroadbent/geany-plugins.git</a></div>

<div>    git fetch ndbroadbent</div><div>    git rebase ndbroadbent/gitignore</div><div>    git remote rm ndbroadbent</div><div><br></div><div><br></div><div>Cheers,</div><div>Nathan B</div></div></div>