##// END OF EJS Templates
revsets.txt: minor improvements
Patrick Mezard -
r11684:39bac182 default
parent child Browse files
Show More
@@ -58,8 +58,7 The following predicates are supported:
58 58 Alias for ``user(string)``.
59 59
60 60 ``branch(set)``
61 The branch names are found for changesets in set, and the result is
62 all changesets belonging to one those branches.
61 All changesets belonging to the branches of changesets in set.
63 62
64 63 ``children(set)``
65 64 Child changesets of changesets in set.
@@ -74,10 +73,10 The following predicates are supported:
74 73 Changesets within the interval, see :hg:`help dates`.
75 74
76 75 ``descendants(set)``
77 Changesets which are decendants of changesets in set.
76 Changesets which are descendants of changesets in set.
78 77
79 78 ``file(pattern)``
80 Changesets which manually affected files matching pattern.
79 Changesets affecting files matched by pattern.
81 80
82 81 ``follow()``
83 82 An alias for ``::.`` (ancestors of the working copy's first parent).
@@ -105,10 +104,11 The following predicates are supported:
105 104 Changeset is a merge changeset.
106 105
107 106 ``modifies(pattern)``
108 Changesets which modify files matching pattern.
107 Changesets modifying files matched by pattern.
109 108
110 109 ``outgoing([path])``
111 Changesets missing in path.
110 Changesets not found in the specified destination repository, or the
111 default push location.
112 112
113 113 ``p1(set)``
114 114 First parent of changesets in set.
General Comments 0
You need to be logged in to leave comments. Login now