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
|