Merge branch 'master' of waschsauger.bl0rg.net:dirty-helpers
commit
839553c240
@ -0,0 +1,13 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
# Show dirty git repos
|
||||||
|
|
||||||
|
for d in */; do
|
||||||
|
(
|
||||||
|
cd $d
|
||||||
|
status=`git status -s 2>/dev/null`
|
||||||
|
if [ $? -ne 0 -o -n "$status" ]; then
|
||||||
|
echo "== $d"
|
||||||
|
git status -s
|
||||||
|
fi
|
||||||
|
)
|
||||||
|
done
|
Loading…
Reference in New Issue