On Thu, Jun 24, 2010 at 12:53 PM, Kevin Wu <kevinwu....@gmail.com> wrote: > I was thinking of using the svn:author property. > > Is this feasible from the Hudson shell script? > > for example, > > svn propget svn:author [working copy path] --revprop -r$SVN_REVISIOIN
Exactly! If you're going to use a shell script, it'll look something like this: $user=$(svn propget svn:author http://subversion/repo/path --revprop -r$SVN_REVISIION) touch <archive_dir>/Committed_User_-_$user Now, you just set your Hudson job to archive all of the files in <archive_dir>. Then, a user looking at Hudson should be able to see the name of the user who did the commit. BTW, if you use the repository URL instead of the working directory, you won't have to worry about the location of the working directory. -- David Weintraub qazw...@gmail.com