Mercurial > public > mercurial-scm > hg
comparison mercurial/commands.py @ 17424:e7cfe3587ea4
fix trivial spelling errors
author | Mads Kiilerich <mads@kiilerich.com> |
---|---|
date | Wed, 15 Aug 2012 22:38:42 +0200 |
parents | 99a2a4ae35e2 |
children | e95ec38f86b0 |
comparison
equal
deleted
inserted
replaced
17406:fc14953e8e34 | 17424:e7cfe3587ea4 |
---|---|
541 bad:: | 541 bad:: |
542 | 542 |
543 hg bisect --good | 543 hg bisect --good |
544 hg bisect --bad | 544 hg bisect --bad |
545 | 545 |
546 - mark the current revision, or a known revision, to be skipped (eg. if | 546 - mark the current revision, or a known revision, to be skipped (e.g. if |
547 that revision is not usable because of another issue):: | 547 that revision is not usable because of another issue):: |
548 | 548 |
549 hg bisect --skip | 549 hg bisect --skip |
550 hg bisect --skip 23 | 550 hg bisect --skip 23 |
551 | 551 |
1250 See :hg:`help dates` for a list of formats valid for -d/--date. | 1250 See :hg:`help dates` for a list of formats valid for -d/--date. |
1251 | 1251 |
1252 Returns 0 on success, 1 if nothing changed. | 1252 Returns 0 on success, 1 if nothing changed. |
1253 """ | 1253 """ |
1254 if opts.get('subrepos'): | 1254 if opts.get('subrepos'): |
1255 # Let --subrepos on the command line overide config setting. | 1255 # Let --subrepos on the command line override config setting. |
1256 ui.setconfig('ui', 'commitsubrepos', True) | 1256 ui.setconfig('ui', 'commitsubrepos', True) |
1257 | 1257 |
1258 extra = {} | 1258 extra = {} |
1259 if opts.get('close_branch'): | 1259 if opts.get('close_branch'): |
1260 if repo['.'].node() not in repo.branchheads(): | 1260 if repo['.'].node() not in repo.branchheads(): |