Hacker News new | ask | show | jobs
by johnnypangs 630 days ago
Seems like you can add —no-edit and get the same behavior, now I can delete that alias. Thanks again :)

(Edit: typo)

1 comments

That is correct, and there is a `--edit` to revert that, so my personal alias is to `git ci --amend --no-edit` such that by default it just merges the staging into the HEAD, and then tacking on `-e` will open the commit message in an editor to expand it.
You can also set `EDITOR=true` for that `git commit --amend` if you forget about `--no-edit`.