Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to list all commited changesets that are result of let's say branch "A" merged into "default"

   /o-o\"B"
o-o-----O-o-o-O-o-o-o "default"
 \-o-o-o-o---/"A"

This is a crude example which shows merge commits as capital "O" so what would like to know if I can only list all those capital "O" changesets.

Thanks.

share|improve this question

1 Answer

up vote 4 down vote accepted

hg log -r "merge()" should do what you want. See hg help revsets for more details.

share|improve this answer
thanks for quick reply! – Xeperis Jun 28 '12 at 12:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.