I am configuring Gerrit and I would like to avoid writing:
git push gerrit HEAD:refs/for/master
I would like to write:
git push review
I am sure it's possible modifying .git/config but I can't make it work.
|
feedback
|
|
I set up two different push types, review and noreview: for reviews:
to bypass review:
Note that there are some Gerrit Project changes that need to be made by the Project Owner/Gerrit Admin in order to bypass a review as well. I think the "Push" permission will need to be added to the project for refs/* (unless you're getting specific about what branch you'll allow bypassing the review in). However, for reviews, the permissions needed to post in will already be set up. In other words, if your
is working, than the "review" part above should work as well without changing anything else. | |||
feedback
|
|
Why don't create bash alias?
Now you can just type:
If you want to work on more than one gerrit branch, check my bash helpers for that: https://github.com/tomwys/gerrit-bash-commands | ||||
|
feedback
|
|
Maybe not exactly what you're looking for, but if you:
then you can And, incidentally, if you | |||
|
feedback
|
|
What you're best off doing is a Git scriptlet in your alias. Something like this works based on the 'upstream' branch, although I'd like to clean this up a little bit still: ~/.gitconfig
This way, you can simply type:
and it's just like you typed:
or
The only requirement for this is that it is only compatible with the Git Bash shell on Windows, or one of the many Linux shells. | |||
|
feedback
|