diff options
Diffstat (limited to 'subcmds/upload.py')
| -rw-r--r-- | subcmds/upload.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/subcmds/upload.py b/subcmds/upload.py index 09ee5c02..01d1dea4 100644 --- a/subcmds/upload.py +++ b/subcmds/upload.py | |||
| @@ -190,6 +190,9 @@ Gerrit Code Review: https://www.gerritcodereview.com/ | |||
| 190 | p.add_option('-w', '--wip', | 190 | p.add_option('-w', '--wip', |
| 191 | action='store_true', dest='wip', default=False, | 191 | action='store_true', dest='wip', default=False, |
| 192 | help='upload as a work-in-progress change') | 192 | help='upload as a work-in-progress change') |
| 193 | p.add_option('-r', '--ready', | ||
| 194 | action='store_true', default=False, | ||
| 195 | help='mark change as ready (clears work-in-progress setting)') | ||
| 193 | p.add_option('-o', '--push-option', | 196 | p.add_option('-o', '--push-option', |
| 194 | type='string', action='append', dest='push_options', | 197 | type='string', action='append', dest='push_options', |
| 195 | default=[], | 198 | default=[], |
| @@ -465,6 +468,7 @@ Gerrit Code Review: https://www.gerritcodereview.com/ | |||
| 465 | private=opt.private, | 468 | private=opt.private, |
| 466 | notify=notify, | 469 | notify=notify, |
| 467 | wip=opt.wip, | 470 | wip=opt.wip, |
| 471 | ready=opt.ready, | ||
| 468 | dest_branch=destination, | 472 | dest_branch=destination, |
| 469 | validate_certs=opt.validate_certs, | 473 | validate_certs=opt.validate_certs, |
| 470 | push_options=opt.push_options) | 474 | push_options=opt.push_options) |
