On 9/22/25 15:18, Kristoffer Haugsbakk wrote:
On Tue, Sep 23, 2025, at 00:11, S0AndS0 of Digital Mercenaries LLC wrote:
quoted
Recently, as of `git version 2.51.0`, running the following commands be
popping
warnings;
git whatchanged <path>
git log --since="$(date --date='-2 weeks' +%F)"
You can use
git log --raw --no-merges
If you want the same behavior.
You can also replace `--raw` with `--stat` or `--name-only` if you want
the list of files without the filemode, hashes, and change type (like
M).
Wow, thanks for the rapid repose Kristoffer!
I'll alias `--raw` until my muscle memory for `git wh<tab>` catches up x-)
If I am not miss remembering plans to remove `--since` then is there a new
equivalent for filtering logs over time?