SVN电子邮件报告

我使用subversion.com作为我的个人资料,每当提交时,我都会得到一个详细的报告,说明究竟发生了什么变化以及是谁发生了变化。 我已经读了一些钩子,并明白,这可能是一个钩子,但它似乎不是默认function包含在Subversion中。 这听起来像是我将要编程的东西…我是否正确的结论,或者我可以通过input一些电子邮件“设置”?

请告诉我,它包括:)

更新

这正是我正在寻找的…你有没有知道我在哪里可以find预build的脚本,做到这一点?

$ svn diff Index: bar.c =================================================================== --- bar.c (revision 3) +++ bar.c (working copy) @@ -1,7 +1,12 @@ +#include <sys/types.h> +#include <sys/stat.h> +#include <unistd.h> + +#include <stdio.h> int main(void) { - printf("Sixty-four slices of American Cheese...\n"); + printf("Sixty-five slices of American Cheese...\n"); return 0; } Index: README =================================================================== --- README (revision 3) +++ README (working copy) @@ -193,3 +193,4 @@ +Note to self: pick up laundry. Index: stuff/fish.c =================================================================== --- stuff/fish.c (revision 1) +++ stuff/fish.c (working copy) -Welcome to the file known as 'fish'. -Information on fish will be here soon. Index: stuff/things/bloo.h =================================================================== --- stuff/things/bloo.h (revision 8) +++ stuff/things/bloo.h (working copy) +Here is a new file to describe +things about bloo. 

你提到的pre / post commit hooksfunction的确包含在内。 生成和发送提交邮件所需的脚本不是。 谷歌周围,你一定会find大量的例子,虽然。