dotfiles/fish.configlink/functions/uncommitted.fish
2022-04-30 10:21:43 -04:00

12 lines
209 B
Fish

set current_dir (pwd)
cd $HOME/dev
find . -type d -name '.git' | while read dir
cd $dir/../
and if test -n (echo (git status -s))
pwd
git status -s
end
cd -
end
cd $current_dir