Mercurial > hg
comparison tests/test-glog @ 7383:b501c7f3c2ad
graphlog: fix regression with filelogs introduced by 7bc62ebe7693
author | Peter Arrenbrecht <peter.arrenbrecht@gmail.com> |
---|---|
date | Sun, 16 Nov 2008 20:55:30 +0100 |
parents | d76f64cd4cb2 |
children | dbc40381620e |
comparison
equal
deleted
inserted
replaced
7382:f5f6b7dcd217 | 7383:b501c7f3c2ad |
---|---|
149 cd .. | 149 cd .. |
150 hg glog -l1 repo | 150 hg glog -l1 repo |
151 hg glog -l1 repo/0 | 151 hg glog -l1 repo/0 |
152 hg glog -l1 repo/missing | 152 hg glog -l1 repo/missing |
153 | 153 |
154 echo % file log with revs != cset revs | |
155 hg init flog | |
156 cd flog | |
157 echo one >one | |
158 hg add one | |
159 hg commit -mone | |
160 echo two >two | |
161 hg add two | |
162 hg commit -mtwo | |
163 echo more >two | |
164 hg commit -mmore | |
165 hg glog two | |
166 |