Browse code

Merge "make git show not display a diff"

Jenkins authored on 2013/09/25 22:22:04
Showing 1 changed files
... ...
@@ -556,7 +556,7 @@ function git_clone {
556 556
         echo "Running in offline mode, clones already exist"
557 557
         # print out the results so we know what change was used in the logs
558 558
         cd $GIT_DEST
559
-        git show --oneline
559
+        git show --oneline --quiet
560 560
         return
561 561
     fi
562 562
 
... ...
@@ -604,7 +604,7 @@ function git_clone {
604 604
 
605 605
     # print out the results so we know what change was used in the logs
606 606
     cd $GIT_DEST
607
-    git show --oneline
607
+    git show --oneline --quiet
608 608
 }
609 609
 
610 610