Send feedback for changes on the main branch to charlie@example.com :
git push ssh://review.example.com:29418/project HEAD:refs/for/master% r=charlie@example.com
Send feedback, but tag them with the theme name "bug42":
git push ssh://review.example.com:29418/project HEAD:refs/for/master% r=charlie@example.com ,topic=bug42
Also CC are two other sides:
git push ssh://review.example.com:29418/project HEAD:refs/for/master% r=charlie@example.com , cc=alice@example.com , cc=bob@example.com
Configure the push macro to perform the last action:
git config remote.charlie.url ssh://review.example.com:29418/project git config remote.charlie.push HEAD:refs/for/master% r=charlie@example.com , cc=alice@example.com , cc=bob@example.com
after that .git / config contains the following:
[remote "charlie"] url = ssh://review.example.com:29418/project push = HEAD:refs/for/master% r=charlie@example.com , cc=alice@example.com , cc=bob@example.com
and now submitting a new change for review to charlie, CCing and alice and bob is much simpler:
git push charlie
source share