On August 19, 2025 1:51 PM, Chris Judkins-Fisher wrote: >I still use git whatchanged I did too. However, now that git log --since has basically the same functionality, Perhaps setting up a git alias might do the trick for you: git config --global alias.whatchanged 'log' so git whatchanged --since="2 week" or something like that should continue to work after the command is removed.