bos@144: $ \textbf{hg qnew second.patch} bos@144: $ \textbf{hg log --style=compact --limit=2} bos@162: 2[qtip,second.patch,tip] bos@273: [mq]: second.patch bos@144: bos@144: 1[first.patch,qbase] bos@273: [mq]: first.patch bos@144: bos@144: $ \textbf{echo 'line 4' >> file1} bos@144: $ \textbf{hg qrefresh} bos@144: $ \textbf{hg tip --style=compact --patch} bos@162: 2[qtip,second.patch,tip] bos@273: [mq]: second.patch bos@144: bos@144: diff -r -r file1 bos@144: bos@144: bos@144: @@ -1,3 +1,4 @@ line 1 bos@144: line 1 bos@144: line 2 bos@144: line 3 bos@144: +line 4 bos@144: bos@144: $ \textbf{hg annotate file1} bos@144: 0: line 1 bos@144: 1: line 2 bos@144: 1: line 3 bos@144: 2: line 4