Tagged Questions
0
votes
1answer
136 views
Running a git post-commit hook
I'm running MAMP locally. I have a php script that I use to build a web site, to generate static HTML files, that I then push to a web server.
This process acts a lot like Jekyll on github pages.
...
1
vote
1answer
182 views
How can I open a TTY for interaction with git-push hooks?
I am using the git-deploy Ruby gem to deliver an application to the staging server. The deployment is performed with SSH keys.
In my after_push script I want to run a command with sudo, which ...
1
vote
1answer
738 views
Git commit hooks per branch
I'm working on getting into some more advanced usage of git, and I think hooks are the way that I want to go, perhaps somebody can give me some advice here.
My plan is to have a git repository with 3 ...
4
votes
2answers
2k views
Post Commit Hook Not Running
My post commit hook is not running after git. I have verified that the hook does work if I just run it from the terminal. The code in the hook is:
#!/bin/sh
#.git/hooks/post-commit
# An example ...