ohmyzsh/classkick/util.sh
Peter Kingswell 1df0f28541 updates
2022-08-01 15:31:36 -04:00

8 lines
155 B
Bash

function git-diff-subdirs() {
for DIR in */; do
pushd $DIR
echo "Git diffing $PWD"
git --no-pager diff -- ':!*poetry.lock'
popd
done
}