如何制作“p4注释”列出修改器名称而不是修订号
在以前的组织中,“cvs annotate”用于为修饰符登录 ID 提供注释。 这对于查明谁修改了文件中的内容非常有用且节省时间。 我可以用简单的周来做同样的事情吗?
谢谢
In previous organization, 'cvs annotate' used to give annotation w.r.t modifier login id.
This was very useful and time saving in finding out who modified what in the file.
Could i do same thing in perforce with simple tweeks?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看来
p4
版本 2016.2在annotate
中添加一个-u
选项,打印修改该行的人的用户名:It appears that version 2016.2 of
p4
adds a-u
option toannotate
that prints the username of the person who modified the line:SO 上已经有一个类似的问题。我能想到的最好办法是:
p4 annotate -c file
,过滤掉更改号码并将其映射到用户(通过p4描述 -s #change
) 并连接两个输出There is a similar question on SO about that already. The best I can come up with is:
p4 annotate -c file
, filters out the change numbers and maps those to users (viap4 describe -s #change
) and joins the two outputs