mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 14:32:55 +00:00
17 lines
382 B
Fish
17 lines
382 B
Fish
|
#!/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
|