Show More
@@ -54,4 +54,5 b' def graphlog(ui, repo, *pats, **opts):' | |||
|
54 | 54 | Nodes printed as an @ character are parents of the working |
|
55 | 55 | directory. |
|
56 | 56 | """ |
|
57 | return cmdutil.graphlog(ui, repo, *pats, **opts) | |
|
57 | opts['graph'] = True | |
|
58 | return commands.log(ui, repo, *pats, **opts) |
@@ -2243,6 +2243,14 b' Test --follow-first and backward --rev' | |||
|
2243 | 2243 | ('symbol', 'rev') |
|
2244 | 2244 | ('symbol', '6')))) |
|
2245 | 2245 | |
|
2246 | Test --follow with --rev of graphlog extension | |
|
2247 | ||
|
2248 | $ hg --config extensions.graphlog= glog -qfr1 | |
|
2249 | o 1:216d4c92cf98 | |
|
2250 | | | |
|
2251 | o 0:f8035bb17114 | |
|
2252 | ||
|
2253 | ||
|
2246 | 2254 | Test subdir |
|
2247 | 2255 | |
|
2248 | 2256 | $ hg up -q 3 |
General Comments 0
You need to be logged in to leave comments.
Login now