I am attempting an interactive rebase against my current branch. Ie, I have a commit that fixes a typo, that I'd like to make into a 'fixup' on top of another commit.
Sometimes this works. Sometimes this gives a strangely formatted error message like:
# git rebase -i
You asked me to rebase without telling me which branch you
want to rebase against, and 'branch.myBranchName.merge' in
your configuration file does not tell me, either. Please
specify which branch you want to use on the command line and
try again (e.g. 'git rebase <upstream branch>').
See git-rebase(1) for details.
If you often rebase against the same branch, you may want to
use something like the following in your configuration file:
[branch "myBranchName"]
remote = <nickname>
merge = <remote-ref>
rebase = true
[remote "<nickname>"]
url = <url>
fetch = <refspec>
See git-config(1) for details.
If I tell git the branch to rebase against (the current branch) it fails with:
# git rebase -i myBranchName
(my editor opens up with 'noop', which I believe is git telling me 'no op' in place of an actual error message). I'll quite the editor and get:
Successfully rebased and updated refs/heads/myBranchName.
How can I see the changes in my current branch in my editor, and mark it as fixup?