Show More
@@ -103,16 +103,16 b' def churn(ui, repo, *pats, **opts):' | |||||
103 | Examples:: |
|
103 | Examples:: | |
104 |
|
104 | |||
105 | # display count of changed lines for every committer |
|
105 | # display count of changed lines for every committer | |
106 |
hg churn -t |
|
106 | hg churn -t "{author|email}" | |
107 |
|
107 | |||
108 | # display daily activity graph |
|
108 | # display daily activity graph | |
109 |
hg churn -f |
|
109 | hg churn -f "%H" -s -c | |
110 |
|
110 | |||
111 | # display activity of developers by month |
|
111 | # display activity of developers by month | |
112 |
hg churn -f |
|
112 | hg churn -f "%Y-%m" -s -c | |
113 |
|
113 | |||
114 | # display count of lines changed in every year |
|
114 | # display count of lines changed in every year | |
115 |
hg churn -f |
|
115 | hg churn -f "%Y" -s | |
116 |
|
116 | |||
117 | It is possible to map alternate email addresses to a main address |
|
117 | It is possible to map alternate email addresses to a main address | |
118 | by providing a file using the following format:: |
|
118 | by providing a file using the following format:: |
@@ -556,7 +556,7 b' def bisect(ui, repo, rev=None, extra=Non' | |||||
556 |
|
556 | |||
557 | - skip all revisions that do not touch directories ``foo`` or ``bar``:: |
|
557 | - skip all revisions that do not touch directories ``foo`` or ``bar``:: | |
558 |
|
558 | |||
559 |
hg bisect --skip ' |
|
559 | hg bisect --skip "!( file('path:foo') & file('path:bar') )" | |
560 |
|
560 | |||
561 | - forget the current bisection:: |
|
561 | - forget the current bisection:: | |
562 |
|
562 | |||
@@ -568,7 +568,7 b' def bisect(ui, repo, rev=None, extra=Non' | |||||
568 | hg bisect --reset |
|
568 | hg bisect --reset | |
569 | hg bisect --bad 34 |
|
569 | hg bisect --bad 34 | |
570 | hg bisect --good 12 |
|
570 | hg bisect --good 12 | |
571 |
hg bisect --command |
|
571 | hg bisect --command "make && make tests" | |
572 |
|
572 | |||
573 | - see all changesets whose states are already known in the current |
|
573 | - see all changesets whose states are already known in the current | |
574 | bisection:: |
|
574 | bisection:: |
@@ -79,6 +79,6 b' Examples' | |||||
79 |
|
79 | |||
80 | - resynchronize draft changesets relative to a remote repository:: |
|
80 | - resynchronize draft changesets relative to a remote repository:: | |
81 |
|
81 | |||
82 |
hg phase -fd |
|
82 | hg phase -fd "outgoing(URL)" | |
83 |
|
83 | |||
84 | See :hg:`help phase` for more information on manually manipulating phases. |
|
84 | See :hg:`help phase` for more information on manually manipulating phases. |
General Comments 0
You need to be logged in to leave comments.
Login now