Merge "make git show not display a diff"
diff --git a/functions b/functions
index 4c4487f..f30c7ad 100644
--- a/functions
+++ b/functions
@@ -556,7 +556,7 @@
         echo "Running in offline mode, clones already exist"
         # print out the results so we know what change was used in the logs
         cd $GIT_DEST
-        git show --oneline
+        git show --oneline --quiet
         return
     fi
 
@@ -604,7 +604,7 @@
 
     # print out the results so we know what change was used in the logs
     cd $GIT_DEST
-    git show --oneline
+    git show --oneline --quiet
 }