Dan Buch 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 70
| Author | Revision | Comments | Message | Labels | Date |
|---|---|---|---|---|---|
|
|
02fcbece918d |
incrementing version since the namespacing of the thing was fairly invasive |
|
||
|
|
8d78224db433 |
closing out old dev head (when dist-i-fying with paver) |
|
||
|
|
9eb03b1be228 |
making relative imports absolute to reduce risk of name collisions, other badness (plus it's the way of the future) |
|
||
|
|
de3ce1bec486 |
creating an `hgext` namespace package and moving `crecord` into it |
|
||
|
|
26541d7377cc |
TRIVIAL: adding an .hgignore file to ignore .pyc files |
|
||
|
|
59874ae39512 |
adding a more traditional setup.py for distribution |
|
||
|
|
7ef671d7d75d |
Support keyword expansion with crecord and qcrecord |
|
||
|
|
ee97b8215eaa |
Move user commands back to __init__ |
|
||
|
|
edc42ee97c41 |
- handle encodings other than ASCII / UTF-8 gracefully -- if a string can't be |
|
||
|
|
648a08c398a1 |
Avoid fake conflicts due to keyword expansion |
|
||
|
|
69718b21b5bb |
Function variable naming and signature cleanup |
|
||
|
|
a77a8002662f |
- add ability to review / edit patch prior to committing |
|
||
|
|
ea893a572965 |
- clean up some extraneous import statements |
|
||
|
|
03f6f5a3ffad |
Promote qnew as in 301633755dec |
|
||
|
|
0a2eebee219c |
Change import style to allow demandimport to do its thing. |
|
||
|
|
1fefa8194c6c |
making easy_install-friendly |
|
||
|
|
fc29a1d8901f |
Display ctrl characters in ^[char] notation to avoid them messing up the display |
|
||
|
|
22a8bc9f4fd8 |
bugfix: filterpatch requires three arguments |
|
||
|
|
c0e5e65165c1 |
crecord: bugfix - confirmation prompt was not appearing when 'c' was pressed for the first time |
|
||
|
|
df8d9afdaf2c |
- fix crash caused when editing large commit-text lines (required modifying textpad) |
|
||
|
|
a8f5ac16cf16 |
crecord: update number of lines in chunk-pad upon resize |
|
||
|
|
6c09bfa94396 |
crecord: fix resizing of main window to work better, and remove initscr() |
|
||
|
|
0e36e278bc62 |
crecord: use getkey() method instead of getch() in main loop. Also call as |
|
||
|
|
7f54a33a69d3 |
crecord: remove debugging lines |
|
||
|
|
946b2961c490 |
crecord: small improvements of code related to encoding |
|
||
|
|
88dcdf9fc50c |
crecord: modify to permit use of either encoding or util module (prevents problems with older mercurial versions) |
|
||
|
Greg Ward
|
3da2e3be7333 |
crecord: adjust to refactoring of util (use encoding module) |
|
||
|
|
2af4836f6d61 |
crecord: modify left-arrow behavior slightly -- first tries to fold if node is foldable |
|
||
|
|
032bba868ec0 |
- split things up into different files -- still runs... ;) |
|
||
|
|
33ae101d3887 |
crecord: use a python package directory in order to begin refactoring into multiple-files |
|