aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--HACKING4
-rwxr-xr-xtools/initial.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/HACKING b/HACKING
index b7ef070..86bfde5 100644
--- a/HACKING
+++ b/HACKING
@@ -122,12 +122,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/publish/master
+git config remote.review.push HEAD:refs/for/master
@endcode
Or with http only:
@code
git remote add review http://USERNAME@openocd.zylin.com/p/openocd.git
-git config remote.review.push HEAD:refs/publish/master
+git config remote.review.push HEAD:refs/for/master
@endcode
The http password is configured from your gerrit settings - http://openocd.zylin.com/#/settings/http-password.
\note If you want to simplify http access you can also add your http password to the url as follows:
diff --git a/tools/initial.sh b/tools/initial.sh
index 9580c9a..446b98b 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/publish/master
+ git config remote.review.push HEAD:refs/for/master
else
echo "Remote review exists"
fi