svn帮助获取所有历史记录
摘要:我想知道如何从svn获取所有更改日志。
我知道 SVN LOG URL,但它没有给我详细信息 文件在该提交中被更改。它只是给我提交消息。
我想知道每次提交都会影响哪些文件。
有什么方法可以获取所有 svn 提交吗?
谢谢
p.s:我也尝试过 svn diff 但它只是 2 次修订,我有数千个 修订!
Summary: I want to know that how can I get all the change log from svn.
I know about SVN LOG URL, but it does not give me detail that what
files were changed in that commit. It just gives me commit message.
I want to know that what files were affected with each commit.
Is there any way to get it for all svn commits?
Thanks
p.s: I tried svn diff too but it is just for 2 revisions and I have thousands
revisions !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
只需在日志上使用 -v
哦,是的,并且...
指定修订版,请使用 -r ...所以:
对于修订版范围,请使用
:
喜欢:just use -v on log
oh yea, and...
to specify revision, use -r ... so:
for a revision range, use
<firstRev#>:<lastRev#>
like:这是我在 notepad++ 中使用的正则表达式,用于获取特定用户的提交。
Here's a regular expression that I use in notepad++ for grabbing the commits by a particular user.