On 10/6/07, Derek Scherger <[EMAIL PROTECTED]> wrote:
> On another note, I've been running a little shell script lately
> (coincidentally called review) that does
>
> mtn log --next 1000 --no-graph --no-merges --diffs | diffc-0.3 | less -r
>
> which shows me what I'm going to get *before* I do an update and lets me
> look over incoming revs.
>
> I'd be happy to call this something else though ("incoming" perhaps) if
> we use review to mean "review these revs ..."

Ooh, I've been wondering how to do that.  (What's this diffc-0.3 thing?)

Also, something I've been doing a lot lately is

mtn automate select b:BRANCH | mtn automate toposort -@ - | tac |
while read rev; do mtn log --last 1 --no-graph --from $rev; done |
less

This shows the log for all revisions in a branch but does not follow
merges from other branches.  ("tac" reverses the order of lines.)
It's handy for reminding oneself what was done on an old branch that
has seen a couple merges from mainline since the last actual change on
the branch.  I'd like to spell this "mtn log --no-follow-merges".


_______________________________________________
Monotone-devel mailing list
[email protected]
http://lists.nongnu.org/mailman/listinfo/monotone-devel

Reply via email to