From d1284d6750102c654758f883d76c8742c562cb91 Mon Sep 17 00:00:00 2001 From: "ChangBo Guo(gcb)" Date: Mon, 22 May 2017 11:08:03 +0800 Subject: [PATCH] Don't need 'git review -s' when clone repository There is no need to initialize gerrit related stuff, and 'git review -s' uses ssh way to connect gerrit, which doesn't work for some users. So just drop it. Change-Id: I68a8f32569d8d41cd9b413a5c5a2e5577b5fdbd0 --- tools/functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/functions b/tools/functions index 6f34c7633e..7bf1f2da44 100644 --- a/tools/functions +++ b/tools/functions @@ -108,7 +108,7 @@ function clone_repo { branch="master" fi output=$({ zuul-cloner --branch "$branch" git://git.openstack.org $repo \ - && (cd $repo && git review -s && git remote -v update \ + && (cd $repo && git remote -v update \ && git fetch -v --tags); } 2>&1) _retval=$? if [ $_retval -ne 0 ] ; then