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
This commit is contained in:
ChangBo Guo(gcb) 2017-05-22 11:08:03 +08:00
parent 4169261754
commit d1284d6750

View File

@ -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