|
1 | 1 | Usage (from a cloned CPython directory) ::
|
2 | 2 |
|
3 |
| - cherry_picker [--pr-remote REMOTE] [--dry-run] [--config-path CONFIG-PATH] [--status] [--abort/--continue] [--push/--no-push] <commit_sha1> <branches> |
| 3 | + cherry_picker [--pr-remote REMOTE] [--dry-run] [--config-path CONFIG-PATH] [--status] [--abort/--continue] [--push/--no-push] [--auto-pr/--no-auto-pr] <commit_sha1> <branches> |
4 | 4 |
|
5 | 5 | |pyversion status|
|
6 | 6 | |pypi status|
|
@@ -69,7 +69,7 @@ From the cloned CPython directory:
|
69 | 69 |
|
70 | 70 | ::
|
71 | 71 |
|
72 |
| - (venv) $ cherry_picker [--pr-remote REMOTE] [--dry-run] [--config-path CONFIG-PATH] [--abort/--continue] [--status] [--push/--no-push] <commit_sha1> <branches> |
| 72 | + (venv) $ cherry_picker [--pr-remote REMOTE] [--dry-run] [--config-path CONFIG-PATH] [--abort/--continue] [--status] [--push/--no-push] [--auto-pr/--no-auto-pr] <commit_sha1> <branches> |
73 | 73 |
|
74 | 74 |
|
75 | 75 | Commit sha1
|
@@ -100,6 +100,8 @@ Additional options::
|
100 | 100 | --abort Abort current cherry-pick and clean up branch
|
101 | 101 | --continue Continue cherry-pick, push, and clean up branch
|
102 | 102 | --no-push Changes won't be pushed to remote
|
| 103 | + --no-auto-pr PR creation page won't be automatically opened in the web browser or |
| 104 | + if GH_AUTH is set, the PR won't be automatically opened through API. |
103 | 105 | --config-path Path to config file
|
104 | 106 | (`.cherry_picker.toml` from project root by default)
|
105 | 107 |
|
@@ -269,6 +271,14 @@ cherry-pick additional commits, by::
|
269 | 271 |
|
270 | 272 | $ git cherry-pick -x <commit_sha1>
|
271 | 273 |
|
| 274 | +`--no-auto-pr` option |
| 275 | +--------------------- |
| 276 | + |
| 277 | +PR creation page won't be automatically opened in the web browser or |
| 278 | +if GH_AUTH is set, the PR won't be automatically opened through API. |
| 279 | +This can be useful if your terminal is not capable of opening a useful web browser, |
| 280 | +or if you use cherry-picker with a different Git hosting than GitHub. |
| 281 | + |
272 | 282 | `--config-path` option
|
273 | 283 | ----------------------
|
274 | 284 |
|
|
0 commit comments