GitXplorerGitXplorer
c

git-campfire-hook

public
10 stars
4 forks
1 issues

Commits

List of commits on branch master.
Unverified
39d8e1170c0f3b1a4f72c49259a6b34b2c4b366d

Cleanup installation section in README

cchrisk committed 15 years ago
Unverified
cf87f73e5ccd62f679b2e86a94267993cb87c247

Add test coverage for bug fix in 76a403c5511ad8569537eb99e162b7e57100c432

cchrisk committed 15 years ago
Unverified
e0a17226c1b1317d5e9b92fd4e9b85fed83ce4ba

Merge remote branch 'upstream/master'

jjage committed 15 years ago
Unverified
6ffc165a73e190f4e0a1b3f352fb464df8b5f145

More reliable implementation of annotated tags

cchrisk committed 15 years ago
Unverified
2d47e71a1fca506909b83a5cf3da3b00bc3bd3bd

Fail fast if Tinder is missing when trying to run tests

cchrisk committed 15 years ago
Unverified
721fe5fcbd42d870c933e361e83cbf4eda92b91f

Add installation example

jjage committed 15 years ago

README

The README file for this repository.

Git Campfire Hook

Making a better git post-receive Campfire hook. Most of them seem like they were hacked over from old svn hooks--ours certainly is--and they don't handle edge cases and branches well.

Installation

To install, run hook.rb from your repository's post-receive hook. The hook should contain something like this:

while read old_rev new_rev ref; do
  ruby hooks/hook.rb $ref $old_rev $new_rev
done

Make sure the post-receive script is executable (otherwise it'll be ignored by git).

TODO: Add notes on configuring the git repository with Campfire settings.