On Wed, Mar 23, 2022 at 3:57 PM Ævar Arnfjörð Bjarmason <avarab@xxxxxxxxx> wrote: > But you *can* do by grabbing the epoch from the tip commit and doing > some basic shell-math on it: > > git log --since=$(($(git log --oneline -1 --date=unix --pretty=format:%ad origin/master) - $((60*60*24*7*2)) )) origin/master Thanks, that works! However, as --since works on the commit date, shouldn't it also be %cd instead of %ad in the format string for consistency? -- Sebastian Schuberth