开发者

Change format of hg log -v

开发者 https://www.devze.com 2023-03-07 23:29 出处:网络
When we do hg log -v we see: changeset:2639:283fb2da345f parent:2638:e06cb712d37b parent:2631:d8f619046812

When we do hg log -v we see:

changeset:   2639:283fb2da345f
parent:      2638:e06cb712d37b
parent:      2631:d8f619046812
user:        joe@pub.com
date:        Wed Apr 13 12:29:57 2011 -0400
files:       core/src/main/java/com/blah/boards/InvalidRateException.java core/src/main/java/com/blah/boards/InvalidException.java core/src/main/java/com/blah/area/xxx/instructions/AssignInstruction.java core/src/main/java/com/blah/area/xxx/instructions/AutoAssignInstruction.java core/src/main/java/com/blah/area/xxx/instructions/AutoDeliveryInstruction.java 
description:
Commiting after merge

Is there a way to output the file in a more readable manner? Something like:

files:       
core/src/main/java/com/blah/boards/InvalidRateException.java 
core/src/main/java/com/blah/boards/InvalidException.java 
c开发者_StackOverflowore/src/main/java/com/blah/area/xxx/instructions/AssignInstruction.java 
core/src/main/java/com/blah/area/xxx/instructions/AutoAssignInstruction.java 
core/src/main/java/com/blah/area/xxx/instructions/AutoDeliveryInstruction.java 


You can specify your own template via --template option. See hg help templates. You could try e.g.

hg log --template "(...) files:\n{files|stringify|fill76}\n"


If you want just the files list for a single revision you can use hg status --change 2639 which shows the file list prefixed with M, A, R, D prefixed, which you can omit by adding the --no-status flag.


This question is quite old, but anyway, here goes a solution:

hg log -v  --template "{files % '{file}\n'}"

Worth checking this: http://www.selenic.com/mercurial/hg.1.html#template-usage

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号