bobf is sharing code with you
Bitbucket is a code hosting site. Unlimited public and private repositories. Free for small teams.
Don't show this againSearching for commits
Mercurial supports a functional language for selecting a set of revisions.
The language supports a number of predicates which are joined by infix operators. Parenthesis can be used for grouping.
Identifiers such as branch names must be quoted with single
or double quotes if they contain characters outside of
[._a-zA-Z0-9\x80-\xff] or if they match one of the
predefined predicates.
Prefix operators
- not x
- Changesets not in x. Short form is
! x.
Infix operators
- x::y
-
A DAG range, meaning all changesets that are descendants of x and ancestors of y, including x and y themselves. If the first endpoint is left out, this is equivalent to
ancestors(y), if the second is left out it is equivalent todescendants(x).An alternative syntax is
x..y. - x:y
- All changesets with revision numbers between x and y, both inclusive. Either endpoint can be left out, they default to 0 and tip.
- x and y
- The intersection of changesets in x and y. Short form is
x & y. - x or y
- The union of changesets in x and y. There are two alternative
short forms:
x | yandx + y. - x - y
- Changesets in x but not in y.
Predicates
- all()
- All changesets, the same as
0:tip. - ancestor(single, single)
- Greatest common ancestor of the two changesets.
- ancestors(set)
- Changesets that are ancestors of a changeset in set.
- author(string)
- Alias for
user(string). - bookmark([name])
- The named bookmark or all bookmarks.
- branch(set)
- All changesets belonging to the branches of changesets in set.
- children(set)
- Child changesets of changesets in set.
- closed()
- Changeset is closed.
- date(interval)
- Changesets within the interval, see
hg help dates. - descendants(set)
- Changesets which are descendants of changesets in set.
- file(pattern)
- Changesets affecting files matched by pattern.
- follow()
- An alias for
::.(ancestors of the working copy's first parent). - grep(regex)
- Like
keyword(string)but accepts a regex. Usegrep(r'...')to ensure special escape characters are handled correctly. - head()
- Changeset is a named branch head.
- heads(set)
- Members of set with no children in set.
- id(string)
- Revision non-ambiguously specified by the given hex string prefix.
- keyword(string)
- Search commit message, user name, and names of changed files for string.
- limit(set, n)
- First n members of set.
- max(set)
- Changeset with highest revision number in set.
- merge()
- Changeset is a merge changeset.
- min(set)
- Changeset with lowest revision number in set.
- p1([set])
- First parent of changesets in set, or the working directory.
- p2([set])
- Second parent of changesets in set, or the working directory.
- parents([set])
- The set of all parents for all changesets in set, or the working directory.
- present(set)
- An empty set, if any revision in set isn't found; otherwise, all revisions in set.
- rev(number)
- Revision with the given numeric identifier.
- roots(set)
- Changesets with no parent changeset in set.
- tag(name)
- The specified tag by name, or all tagged revisions if no name is given.
- user(string)
- User name is string.
Commits 1–30 of 767
| Author | Revision | Comments | Message | Labels | Date |
|---|---|---|---|---|---|
|
|
f30d8feb21c0 |
Bump version number |
|
||
|
|
4b9fe102f173 |
Merge. |
|
||
|
|
a276b23b1ac2 |
Only encode docstring if it's an unicode string. |
|
||
|
|
2b3a5bc4385c |
Replace -c with --config in documentation and tests. |
|
||
|
|
fc67f34f365a |
Drop "-c" config option as it conflicts with vanilla Python's "-c" option. |
|
||
|
|
07ddb892dcf3 |
Fix incorrect option name in sample-config. |
|
||
|
|
d8d4c92376f6 |
Don't lose the session history if an EnvironmentError occurs. |
|
||
|
|
7d2c7938558b |
New artwork, courtesy of Leo Hutson! |
|
||
|
|
9e7668e8a254 |
Merge in Anatoly's changes. |
|
||
|
|
d4e93ede9e22 |
cli: init_wins() colors argument is not used |
|
||
|
|
515524831e08 |
cli: minor whitespace, copyright and typo |
|
||
|
|
50f48f247dc2 |
cli: clean up globals and make them explicit |
|
||
|
|
fd740b9b73ad |
Add Amjith and Sebastian to AUTHORS. |
|
||
|
|
ed600c4f1399 |
Make size of suggestion window configurable. |
|
||
|
|
ada917fa94dc |
Reformat text, needs i18n needs crash checking for long filenames which wrap |
|
||
|
|
d86fc8c9704a |
Maintain 2.5 compatibility |
|
||
|
|
994604943e4c |
Make it so we setting hist_length to zero does not cause you to not have session history |
|
||
|
|
381695ce3882 |
Exception handling for file IO events while saving history. |
|
||
|
|
a3897cf39d8f |
Read in the history file before writing. This prevents stomping of history from multiple bpython sessions. History from multiple sessions will be interleaved. |
|
||
|
|
cd665e2ed07e |
Passing in hist_length to save(), so we'll start honoring the history length in the config file. |
|
||
|
|
8fe1d0a2f59e |
Removed redundant history.save() calls in gtk_.py, cli.py and urwid.py. |
|
||
|
|
bc4a8a7a0e65 |
Added feature to append each command to the python history file as soon as user presses enter on the repl. |
|
||
|
|
06758a7b8e4c |
Fix keyword-only arguments in argspec. |
|
||
|
|
61c0202e81ca |
Added a Dutch translation file |
|
||
|
|
1f9c109f0d1d |
Workaround for issue |
|
||
|
|
9fb8524eb3f7 |
Always use repr() for displaying argument default values. |
|
||
|
|
24972145f795 |
Revert some unwanted changes that sneaked in with 0477d51550ab. |
|
||
|
|
a761f5fb706f |
Second attempt at making b0efd741dfd7 compatible with Python 2.5. |
|
||
|
|
32a235b4aa01 |
Add a isatty() method to CLIRepl. Refs #149. |
|
||
|
|
086be2e9e051 |
with taken from the future (2.5 compatibility) |
|