Read from STDIN on a Git pre-commit Hook (with PHP) - Stack Overflow most recent 30 from stackoverflow.com 2009-12-21T05:03:08Z http://stackoverflow.com/feeds/question/1067874 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1067874/read-from-stdin-on-a-git-pre-commit-hook-with-php 1 Read from STDIN on a Git pre-commit Hook (with PHP) Rob 2009-07-01T08:08:01Z 2009-07-01T20:57:48Z <p>Hi, I'm looking for a way to have <code>git-commit</code> wait for standard input. I'm coding this in <code>PHP</code>, as my <code>bash</code> skills are non-existant, so I thougth doing a regular</p> <pre><code>&lt;?php $input = trim(fgets(STDIN)); fscanf(STDIN, "%d\n", $line); ?&gt; </code></pre> <p>would do the trick, and wait until I write stuff in to continue, but it just goes ahead and continues executing my PHP script anyways.</p> <p>The idea behind this is that after I tag a release, git will push <code>HEAD</code> to the testing webserver, send a couple of tweets, and let me write in some details about the release in the CHANGELOG.</p> <p>While I can achieve the writing to a file (using <code>exec('mate -w')</code>), I'd like it to hang on until I do a quick test on the server. This would enable me to rollback if I notice any errors (lazy, I know).</p> <p>Thanks for any help!</p> http://stackoverflow.com/questions/1067874/read-from-stdin-on-a-git-pre-commit-hook-with-php/1071362#1071362 0 Answer by Charles Bailey for Read from STDIN on a Git pre-commit Hook (with PHP) Charles Bailey 2009-07-01T20:57:48Z 2009-07-01T20:57:48Z <p>Most git hooks either have something special fed to there stdin, or have stdin detached from the terminal. They are all designed to be run non-interactively, so I don't believe that a hook is suitable for what you want to do. You can, of course, manually talk to <code>/dev/tty</code> but I don't think that it's a very good idea.</p> <p>I also don't believe that the 'pre-commit' hook is suitable to your task, surely not every commit that you make will be a release of some sort? A 'post-receive' hook on the testing webserver machine sounds more appropriate.</p>