]> git.xonotic.org Git - xonotic/xonotic.git/commitdiff
nicer colors in ./all commit
authorRudolf Polzer <divverent@alientrap.org>
Tue, 22 Jun 2010 15:32:43 +0000 (17:32 +0200)
committerRudolf Polzer <divverent@alientrap.org>
Tue, 22 Jun 2010 15:32:43 +0000 (17:32 +0200)
all

diff --git a/all b/all
index cc26e5be4dcd64b745e4095638290194e3a1e3fb..e18ca0d81bf2d961891ddaa81da31f9e82c221fa 100755 (executable)
--- a/all
+++ b/all
@@ -391,9 +391,10 @@ case "$cmd" in
                        enter "$d0/$d" verbose
                        r=`git symbolic-ref HEAD`
                        r=${r#refs/heads/}
                        enter "$d0/$d" verbose
                        r=`git symbolic-ref HEAD`
                        r=${r#refs/heads/}
-                       if git diff HEAD | grep .; then
+                       diffdata=`git diff --color HEAD`
+                       if [ -n "$diffdata" ]; then
                                # we have uncommitted changes
                                # we have uncommitted changes
-                               if yesno "Uncommitted changes in \"$r\" in $dv. Commit?"; then
+                               if yesno "Uncommitted changes in \"$r\" in $dv. Commit?" 'echo "$diffdata" | less -r'; then
                                        verbose git commit -a
                                fi
                        fi
                                        verbose git commit -a
                                fi
                        fi
@@ -403,10 +404,9 @@ case "$cmd" in
                        if ! git rev-parse "$upstream" >/dev/null 2>&1; then
                                upstream="`repobranch "$d"`"
                        fi
                        if ! git rev-parse "$upstream" >/dev/null 2>&1; then
                                upstream="`repobranch "$d"`"
                        fi
-                       if git log "$upstream".."$r" | grep .; then
-                               if yesno "Push \"$r\" in $dv?"; then
-                                       verbose git push "$rem" HEAD
-                               fi
+                       logdata=`git log --color "$upstream".."$r"`
+                       if yesno "Push \"$r\" in $dv?" 'echo "$logdata" | less -r'; then
+                               verbose git push "$rem" HEAD
                        fi
                        if [ x"$submit" = x"-s" ]; then
                                case "$r" in
                        fi
                        if [ x"$submit" = x"-s" ]; then
                                case "$r" in