summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbin/common/gt5
1 files changed, 3 insertions, 2 deletions
diff --git a/bin/common/gt b/bin/common/gt
index d6b19f9..1eafe2b 100755
--- a/bin/common/gt
+++ b/bin/common/gt
@@ -98,10 +98,11 @@ while getopts ":a:c:f:dlsheu" opt; do
(
cd "$proj"
cd "$(git rev-parse --show-toplevel || printf '.\n')"
- git pull --ff
+ git pull --ff > /dev/null
git add .
- git commit --all -m "checkpoint"
+ git commit --all -m "checkpoint" > /dev/null
git push
+ printf '%s: done.\n' "$proj"
)
done
fi