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.
如果是这样,以下使用 awk 的单行代码可能会提供有用的模板
svn log -v -r{2009-05-21}:HEAD | awk '/^r[0-9]+ / {user=$3} /yms_web/ {if (user=="george") {print $2}}' | sort | uniq
您可以将其添加到有用的命令行 svn 示例列表中。
或者使用 svn log 的 XML 输出 (--xml) 和 Xslt 处理器。