Nathann Cohen <nathann.co...@gmail.com> writes:

> Hellooooooooooo everybody !!!
>
> I just wondered if there was a way (or if there *will* be a way when
> we will be using git) to be automatically emailed when a ticket
> contains a patch that touches a specific file.

Well, with git, if you kept a local mirror of trac's repo, you could run

    git log --all ^master -- path/to/file

to get a list of all commits on trac (not necessarily on a ticket, maybe
in the combinat queue or something) that touch the file but haven't yet
been merged. Or to make it look nicer,

    git log --oneline --graph --stat --all ^master -- path/to/file

Or if this was a feature that more than one person would use, someone
could write a checker and mailer into the post-receive hook in trac's
repo.

-Keshav

-- 
You received this message because you are subscribed to the Google Groups 
"sage-devel" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-devel+unsubscr...@googlegroups.com.
To post to this group, send email to sage-devel@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-devel?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to