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