Suppose you have:
A-B-C
Now your compilation/test fail. The fix should be merged in A. My current work-flow is like that:
$ git commit -m "fixA"
A-B-C-fixA
$ git rebase -i A~1
And squash fixA in A, result in:
A'-B-C
Question!
Is there a command to do something like
A-B-C + (index with fix for A)
$ git commit -supperdupper A
Result:
A'-B-C