> > What Git hosting service are you using? > Actually, I'm not using any hosting service at all but the file:// protocol. My idea was to implement a post-receive hook in my git repo that uses curl for issuing an HTTP request to the local trac installation.
The rationale for this is that -- when using the file:// protocol -- the post-receive hook is executed on the PUSHING machine, not on the machine being pushed to (e.g. UPSTREAM, http://stackoverflow.com/questions/32945359/how-do-i-properly-set-up-hooks-on-a-remote-that-is-specified-via-the-file-pro). When I now push from my machine to a file share on UPSTREAM (the machine where Trac runs), I would need access from my local machine to the trac directory on UPSTREAM. Therefore, I wanted to solve the issue by simply calling http://upstream/newcommits?hash1&hash2&hash3&hash4. And I don't need to mirror any repo since the actual repo *is already* on the same machine as my Trac installation. -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/trac-users. For more options, visit https://groups.google.com/d/optout.
