]> git.phdru.name Git - git-scripts.git/commitdiff
Use new ls-dirty
authorOleg Broytman <phd@phdru.name>
Wed, 3 Aug 2016 12:14:50 +0000 (15:14 +0300)
committerOleg Broytman <phd@phdru.name>
Wed, 3 Aug 2016 12:14:50 +0000 (15:14 +0300)
This makes status-dirty-carefully much faster.

status-dirty-carefully

index 065dac07c9faa9c7c6be89552a9193f804555d41..8e6f9ef99523916d5c6ffc7d33922bc625e7ad9a 100755 (executable)
@@ -1,13 +1,13 @@
 #! /bin/sh
 
-cd "`dirname \"$0\"`" && PROG_DIR="`pwd`" &&
+cd "`dirname \"$0\"`" && prog_dir="`pwd`" &&
 cd "$HOME"/tmp && rm -rf status-dirty-carefully.tmp &&
 
-LSTMP="$HOME"/tmp/status-dirty-carefully.tmp \
-"$PROG_DIR"/do-all \
-   'test "$g" = "$d/.git" || continue;' \
-   'rsync -aW --del --protocol=28 "$d" "$LSTMP" && cd "$LSTMP/$b" &&' \
-   'test -n "`git status -s`" && echo "----- $d -----" &&' \
-   'git status --branch' &&
+LSTMP="$HOME"/tmp/status-dirty-carefully.tmp &&
+for d in `"$prog_dir"/ls-dirty`
+do
+   rsync -aW --del --protocol=28 "$d" "$LSTMP" && cd "$LSTMP/`basename $d`" &&
+   echo "----- $d -----" && git status --branch
+done &&
 
 cd "$HOME"/tmp && exec rm -rf status-dirty-carefully.tmp