My workflow is different.
# git commit -s <edit commit message, add story number, etc...> # git review
The tools want a specific format in the commit message, which is easier for me to get right this way.
This is my typical development workflow, using http instead of ssh, Ubuntu account already setup: user@workstation:~$ git clone https://opendev.org/starlingx/docs.git user@workstation:~$ cd docs/ user@workstation:~/docs$ git remote add gerrit https://abraham@review.opendev.org/starlingx/docs.git user@workstation:~/docs$ git review -s user@workstation:~/docs$ git remote -v user@workstation:~/docs$ git remote update user@workstation:~/docs$ git checkout master user@workstation:~/docs$ git pull --ff-only origin master user@workstation:~/docs$ git checkout -b abraham-test user@workstation:~/docs$ git add .. user@workstation:~/docs$ git commit -s user@workstation:~/docs$ git review Best Regards Abraham