Re: whatchanged is super useful!
From: Phil Hobbs <hidden>
Date: 2025-09-26 00:26:44
From: Phil Hobbs <hidden>
Date: 2025-09-26 00:26:44
Fair enough, thanks.
On Sep 25, 2025, at 17:55, Kristoffer Haugsbakk [off-list ref] wrote: On Thu, Sep 25, 2025, at 23:44, Phil Hobbs wrote:quoted
I use git whatchanged all the time. Please don't remove it!It might be useful but everything it can do, git-log(1) can also do. You can replace it with `git log` like so: • Given: `git whatchanged <opts>` • Replace with: `git log <opts> --no-merges --raw` Or you can replace `--raw` with more modern alternatives like `--name-only` or `--stat`.