dotfiles/fish.configlink/functions/uncommitted.fish

17 lines
382 B
Fish
Raw Normal View History

2021-11-16 12:49:59 +00:00
#!/usr/local/bin/fish
function uncommitted --description "Find uncommitted git repos"
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
end