comparison mercurial/commands.py @ 24429:69bd0ec2f9be

commands.push: abort when revisions evaluate to empty set (BC) If the "-r" argument is specified to "hg push," the user has expressed an intent for a specific changeset to be present on the remote. If that expression cannot be mapped to a known changeset, the user's intent is ambiguous and cannot be acted upon without making assumptions. Previously, if arguments to `push -r <rev>` evaluated to an empty set (perhaps the user specified a revset that didn't evaluate to anything), the empty "revs" list would be passed down to "exchange.push" where it appears the empty list was being interpreted as "push everything." This patch adds validation to the "-r" argument to the push command. If the argument is specified but doesn't resolve to a changeset, the command will abort instead of doing something potentially unexpected. This patch is technically breaking backwards compatibility. I believe this is justified because the new behavior closes a crack that could result in undefined or under-defined behavior. Also, this patch doesn't drop client capabilities because if users really wanted to push all changesets, they can simply omit the "-r" argument from push completely.
author Gregory Szorc <gregory.szorc@gmail.com>
date Mon, 23 Mar 2015 18:21:01 -0700
parents 77881cade20e
children e22248f6d257
comparison
equal deleted inserted replaced
24428:586d33f47dca 24429:69bd0ec2f9be
5150 else: 5150 else:
5151 raise 5151 raise
5152 5152
5153 if revs: 5153 if revs:
5154 revs = [repo.lookup(r) for r in scmutil.revrange(repo, revs)] 5154 revs = [repo.lookup(r) for r in scmutil.revrange(repo, revs)]
5155 if not revs:
5156 raise util.Abort(_("specified revisions evaluate to an empty set"),
5157 hint=_("use different revision arguments"))
5155 5158
5156 repo._subtoppath = dest 5159 repo._subtoppath = dest
5157 try: 5160 try:
5158 # push subrepos depth-first for coherent ordering 5161 # push subrepos depth-first for coherent ordering
5159 c = repo[''] 5162 c = repo['']