Comment on Show HN: Git–fiddle – Edit commit messages, author and timestamps during rebaseparentComments−felixschlOP10yThe README does not do a good job at conveying this, but you essentially get to see this in your editor buffer:```pick <sha> <timestamp> by: <author>[<message>]```This tool will then apply any changes to <timestamp>, <author> and optionally <message> to the picked commit.−fiatjaf10yThat's what I always expect `git rebase -i` will do, but it doesn't.
Comments
The README does not do a good job at conveying this, but you essentially get to see this in your editor buffer:
```
pick <sha> <timestamp> by: <author>
[<message>]
```
This tool will then apply any changes to <timestamp>, <author> and optionally <message> to the picked commit.
That's what I always expect `git rebase -i` will do, but it doesn't.