是否可以确定有多少行代码被签入构建中?
是否可以确定有多少行代码被签入构建中?
例如,有多少行代码进入 main-dev build #50
我使用 SVN 和 Hudson 服务器。
请让我知道您的意见。
谢谢
Is it possible to determine how many lines of code are being checked into a build?
For example, how many lines of code went into main-dev build #50
I use SVN and Hudson server.
Please let me know your input.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试 StatSVN:http://www.statsvn.org/index.html
这是一个示例报告(对于 Java):http://www.statsvn.org/jdepend-report.html
Try StatSVN: http://www.statsvn.org/index.html
Here's an example report (for Java): http://www.statsvn.org/jdepend-report.html
我使用以下脚本(Linux 中的 bash shell)来计算与最新版本相比在本地修改的当前代码行:
这将为您提供如下输出:
要检查过去版本的代码行更改,您可以只需使用
-r
参数即可。以下脚本采用一个参数作为感兴趣的版本:I use the following script (bash shell in linux) to compute the current lines of code being modified locally compared to the most resent version:
This gives you the output like this:
To check the lines of codes changes of a past version, you can simply use the
-r
argument. The following script takes one argument as the version of interest: