Tagged Questions
1
vote
1answer
85 views
Git post-receive auto-building
I'd line to install a post-receive hook in a git repository to build and install the module to some custom testing area. The idea is that the testing area will always reflect the most current code in ...
2
votes
2answers
420 views
How do I use a post-receive hook to conditionally run commands depending on the branch updated?
I have the following post-receive hook I wrote on a virtual server such that it copies the dev and production versions of the repository into dev and production directories where each version of the ...
0
votes
1answer
43 views
Location of shell script file, which is to be executed by local git hook
I'm using git hooks for the first time and stuck on an issue that seems simple but I haven't found any answer so far.
I have created a shell script (it works fine when called directly) which I want ...
0
votes
1answer
1k views
git pre-commit hook, add file into index
I'm trying to write a simple pre-commit hook to check if a file was modified, if so, compress it and add it into the current index, something like this
#!/bin/sh ...
15
votes
1answer
3k views
Find Git branch name in post-update hook
I'm executing a programme to alert CruiseControl each time an update is sent to our remote repository. I'm using a Git post-update hook for this.
It would be great if I could find out which branch ...
7
votes
1answer
633 views
Cross platform git hooks
How do you manage git pre/post commit hooks across various platforms (say, *nix and windows)?
Any best practices recommended for this scenario?
6
votes
3answers
4k views
Calling 'git pull' from a git post-update hook
I have a central git repo set up using gitolite.
I want to set up a hook such that whenever a user pushes to the repo, it performs a pull elsewhere followed by some automated testing.
So far, I only ...