How to install theme from command line when i push new commit on gerrit?

When you download a git commit to verify the code on Gerrit (2.8), I would like to be able to set the subject field (e.g. g-tune-pme-reform here https://gerrit.gromacs.org/#/c/3453/3 ) How can this be done from the command line? Can this be done in the original git push?

+6
source share
1 answer

yes, this is possible with the push command:

git push origin HEAD:refs/for/master/<topic_name> 
+9
source

Source: https://habr.com/ru/post/969512/


All Articles