]> git.phdru.name Git - git-scripts.git/blobdiff - all-status-carefully
Add gc-expire scripts
[git-scripts.git] / all-status-carefully
index 8a767d22ff31841fda7fabbf8225acf3df9796d1..d0bafa5d467ded6adf0f081c2dd5d03a555a70ed 100755 (executable)
@@ -8,6 +8,8 @@ cd "`dirname \"$0\"`" && prog_dir="`pwd`" &&
 rm -rf "$STMP" && mkdir "$STMP" &&
 
 "$prog_dir"/do-all \
+   'test "$g" = "$d/.git" || continue;' \
    'rsync -aW --del --protocol=28 "$d" "$STMP" && cd "$STMP/$b" &&' \
-   'test -n "`git status --short`" && echo "----- $d -----" &&' \
-   'git status --short --branch'
+   '( test -n "`git status --short`" ||' \
+   'git status --branch --short | grep -q "ahead\|behind" ) &&' \
+   'echo "----- $d -----" && git status --short --branch'