From 26f1354edae2f24da85c2860b6739cbd4821115f Mon Sep 17 00:00:00 2001 From: Spencer Oliver Date: Mon, 16 Apr 2012 17:53:28 +0100 Subject: [PATCH] docs: update gerrit publish refs since gerrit 2.3 pushing changes to refs/for/ is deprecated in favour of using refs/publish/. Change-Id: I6244b9645da2144921583bd9778a95c563fac89f Signed-off-by: Spencer Oliver Reviewed-on: http://openocd.zylin.com/567 Tested-by: jenkins --- HACKING | 4 ++-- tools/initial.sh | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/HACKING b/HACKING index 7cd5b23567..9eb41a5cc8 100644 --- a/HACKING +++ b/HACKING @@ -69,12 +69,12 @@ to instruct git locally how to send off the changes. -# Add a new remote to git using Gerrit username: @code git remote add review ssh://USERNAME@openocd.zylin.com:29418/openocd.git -git config remote.review.push HEAD:refs/for/master +git config remote.review.push HEAD:refs/publish/master @endcode Or with http only: @code git remote add review http://openocd.zylin.com/p/openocd.git -git config remote.review.push HEAD:refs/for/master +git config remote.review.push HEAD:refs/publish/master @endcode -# You will need to install this hook, we will look into a better solution: @code diff --git a/tools/initial.sh b/tools/initial.sh index c183d014e3..9caba5a4a1 100755 --- a/tools/initial.sh +++ b/tools/initial.sh @@ -12,7 +12,7 @@ add_remote() remote_exist=`grep remote .git/config | grep review | wc -l` if [ "x$remote_exist" = "x0" ] ; then git remote add review ssh://$USERNAME@openocd.zylin.com:29418/openocd.git - git config remote.review.push HEAD:refs/for/master + git config remote.review.push HEAD:refs/publish/master else echo "Remote review exists" fi -- 2.30.2