mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 09:52:56 +00:00
12 lines
209 B
Fish
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
|