解析 git log 输出,最好是 xml
我想解析 git log 的输出。我当前的工具通过解析 svn 日志具有的 --xml 选项来为 svn 执行此操作。我似乎不知道如何将 git log 输出为 xml。如果 xml 不是一个选项,解析此输出的最佳方法是什么?我真的很想避免将其解析为原始文本,寻找“作者”和“日期”等。
谢谢
I want to parse the output from git log. My current tool does this for svn by parsing the --xml option that svn log has. I can't seem to figure out how to output git log as xml. If xml is not an option, what is the best way to parse this output? I would really like to avoid parsing it as raw text, looking for "author" and "date" ect.
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用格式化选项构建自己的简单 xml 输出。
只需添加您想要的任何字段即可。 (如果您想要正确的 xml 标头等,则需要编写一些脚本。)
请参阅
man git-log
PRETTY FORMATS 部分您有权访问的字段列表。You could build your own simple xml output by using the formatting options.
Just add whatever fields you want. (You'll need to script a bit if you want proper xml header etc.)
See
man git-log
PRETTY FORMATS section the list of fields you have access to.