This commit is contained in:
Peter Kingswell 2022-08-01 15:31:36 -04:00
commit 1df0f28541
8 changed files with 157 additions and 114 deletions

8
classkick/util.sh Normal file
View file

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