Details
Details
- Reviewers
indygreg durin42 - Group Reviewers
hg-reviewers - Commits
- rHG45a8cd74de4e: phabsend: polish the docstring a bit
Diff Detail
Diff Detail
- Repository
- rHG Mercurial
- Lint
Lint Skipped - Unit
Unit Tests Skipped
indygreg | |
durin42 |
hg-reviewers |
Lint Skipped |
Unit Tests Skipped |
If --amend is set, update commit messages so they have the | If --amend is set, update commit messages so they have the | ||||
``Differential Revision`` URL, remove related tags. This is similar to what | ``Differential Revision`` URL, remove related tags. This is similar to what | ||||
arcanist will do, and is more desired in author-push workflows. Otherwise, | arcanist will do, and is more desired in author-push workflows. Otherwise, | ||||
use local tags to record the ``Differential Revision`` association. | use local tags to record the ``Differential Revision`` association. | ||||
The --confirm option lets you confirm changesets before sending them. You | The --confirm option lets you confirm changesets before sending them. You | ||||
can also add following to your configuration file to make it default | can also add following to your configuration file to make it default | ||||
behaviour. | behaviour:: | ||||
[phabsend] | [phabsend] | ||||
confirm = true | confirm = true | ||||
phabsend will check obsstore and the above association to decide whether to | phabsend will check obsstore and the above association to decide whether to | ||||
update an existing Differential Revision, or create a new one. | update an existing Differential Revision, or create a new one. | ||||
""" | """ | ||||
revs = list(revs) + opts.get('rev', []) | revs = list(revs) + opts.get('rev', []) | ||||
revs = scmutil.revrange(repo, revs) | revs = scmutil.revrange(repo, revs) | ||||
if not revs: | if not revs: |