dotfiles/modules/shell/fish/functions/uncommitted.fish

12 lines
209 B
Fish
Raw Normal View History

2022-04-30 14:21:43 +00:00
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 -
2021-11-16 12:49:59 +00:00
end
2022-04-30 14:21:43 +00:00
cd $current_dir