Re: git whatchanged
From: Kristoffer Haugsbakk <hidden>
Date: 2025-10-31 08:24:13
On Fri, Oct 31, 2025, at 09:02, Remke Schuurmans wrote:
'git whatchanged' is nominated for removal. If you still use this command, please add an extra option, '--i-still-use-this', on the command line and let us know you still use it by sending an e-mail to [off-list ref]. Thanks. fatal: refusing to run without --i-still-use-thi ;) I still use this one.
This command is being removed because it was supplanted by git-log(1) a long while ago. Both commands use the same machinery, just with different defaults. You can replace it with `git log` in this way: • Given: `git whatchanged <opts>` • Replace with: `git log <opts> --no-merges --raw` Additionally for the sake of readability, you might have more use for `--stat` or `--name-only` rather than `--raw` if you are only reading the output (not feeding the output to another program).