mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-01-30 02:44:42 +01:00
8 lines
155 B
Bash
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
|
|
}
|