Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从 Perforce 获取有关提交的更改列表的具体信息:
所以我的目标是获取提交的文件和发布描述:
我将从这样的事情开始:
p4 changes -m //depot/main/path/...@2013/02/20,@now
这将给我更改列表编号、日期、提交的用户、更改列表描述。
但是,我可以使用什么正则表达式来包含或仅获取发行说明以及包含在此更改列表中的文件?
任何想法都非常感谢......
鉴于您使用的是 Unix,最简单的方法是:
p4 changes //depot/main/path/...@2013/02/20,@now | awk '{print $2}' | xargs p4 describe -s
您示例中的-m标志需要一个参数(您希望看到的最大更改数)。
-m