From 06d17eb54ad37e6d21eafcded52cc581a56d328b Mon Sep 17 00:00:00 2001 From: Sean Dague Date: Tue, 24 Sep 2013 07:04:11 -0400 Subject: [PATCH] make git show not display a diff if the top commit includes actual content, this was being displayed in the devstack log, which was just confusing. --quiet suppresses this. Change-Id: Id52604d3b2b9a1372746120cb5d8d741c35576b7 --- functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/functions b/functions index 209f13c7d7..d590ac52f6 100644 --- a/functions +++ b/functions @@ -556,7 +556,7 @@ function git_clone { 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 @@ function git_clone { # print out the results so we know what change was used in the logs cd $GIT_DEST - git show --oneline + git show --oneline --quiet }