On Thu, May 10, 2012 at 11:51 AM, Jeremy Postlethwaite jpostlethwaite@wikimedia.org wrote:
I added a howto for doing an interactive rebase with git and gerrit:
https://www.mediawiki.org/wiki/Git/rebase
If there is anything wrong with this please let me know!
I don't see why you'd run 'git pull origin master' after making all your changes. It sounds like it would attempt to merge origin/master into your feature branch, which you really don't want it to do (this is not an apparent problem in your example because there was nothing to pull when you ran it). If you just want to update where origin/master is, run 'git fetch'. But you're not even using that information, so you shouldn't need to do this.
Roan