Re: I still use this!
From: Kristoffer Haugsbakk <hidden>
Date: 2025-09-30 19:57:45
On Tue, Sep 30, 2025, at 20:49, Stephen Harding wrote:
I just encountered this: '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-this I use oh-my-zsh and I rely on the git aliases. I used this today: which gwch gwch: aliased to git whatchanged -p --abbrev-commit --pretty=medium
It's being removed because git log supplanted it over 12 years ago. Both commands use the same machinery, just with different defaults. You should be able to replace that with git log in front instead, maybe with a --no-merges as well. Cheers