Saturday, 1 October 2022

List of recently changed Git tracked files in Bash

Forgot why I needed this, but isn't it a beauty :)

git whatchanged --since '2022-03-01' --oneline | grep "whatever_..." | uniq | sort

(Most likely largely via StackOverflow)