I have a new project on gerrit named my_project and I am its integrator.
I do the following:
git clone ssh://gerrit.local.server.com:29418/my_project
cd my_project
git remote add bla ssh://gerrit.local.server.com:29418/my_project
git fetch bla
echo 111 > try.txt
git commit -as
And all these tries fail with no permmision error (I am an integrator and I use with the right user, RSA key and email in all the configs files):
git push origin master
git push ssh://gerrit.local.server.com:29418/my_project refs/heads/* refs/tags/*
What do I miss here?