I haven't experienced this. Are you maybe doing git rebase -i <SHA>
.. where <SHA> is the latest commit in your repo (same as doing git rebase -i HEAD)? Usually I rebase like this (if I want to edit the last 5 commits): git rebase -i HEAD~5 On Wednesday, March 21, 2012 8:11:54 PM UTC+1, Les Nightingill wrote: > > ...trying to understand how interactive rebase works... > > under what circumstances does git rebase -i <sha of some commit> > simply complete and present an empty git-rebase-todo for editing (i.e. > without a list of commits for me to pick/edit/squash etc)? > > In my test, the rebase completes with the message "Successfully > rebased and updated refs/heads/newbranch." AND also a blank file (.git/ > rebase-merge/git-rebase-todo) is opened in my editor. > > I must be missing something... any suggestions would be appreciated > > Les -- You received this message because you are subscribed to the Google Groups "Git for human beings" group. To view this discussion on the web visit https://groups.google.com/d/msg/git-users/-/-pYkhi2N9cQJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/git-users?hl=en.
