I have a script, that I need to run after committing to a project under git revision control. Therefore I created a post-commit hook in my projects .git directory in the subdirectory /hooks, named it 'post-commit' and gave it the following contents:

#!/bin/sh
# I am a post-commit hook
/usr/local/bin/my_script &

my_script is executable and runs fine in /bin/sh. In fact it has a runtime of several seconds, so I want it to be backgrounded and detached from the current shell. Thats why I put the trailing '&' to my hook.

The problem now is, that the '&' seems to be ignored. When I commit using gitx 0.7.1 under OSX Lion, gitx hangs for exactly the period that my_script needs to run.

I tried a lot, but do not get the process itself into the background.

Can anyone tell me, what is wrong here? Any suggestions are welcome.

Thx in advance. Felix

link|improve this question

65% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Here's how it works for me:

#!/bin/sh
# I am a post-commit hook
nohup /usr/local/bin/my_script &>/dev/null &
link|improve this answer
David, meanwhile I found a similar approach: nohup /usr/local/bin/my_script 2>&1 > /dev/null & – GeorgieF Nov 15 '11 at 11:22
feedback

Try to use nohup

#!/bin/sh
# I am a post-commit hook
nohup /usr/local/bin/my_script &
link|improve this answer
Hey WagnerVaz, tried that, but unfortunately it does not work. The script seems not to detach from the current process and gitx is stale as long as the script runs. – GeorgieF Oct 27 '11 at 14:51
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.