Git hooks are scripts that fire when certain events transpire in git. Events include, but are not limited to, pre- and post-commit and pre- and post-rebase on the client-side, and post-receive-commit on the server-side. Hooks can be written in most any scriptable language, including ruby, perl, ...
1
vote
1answer
516 views
Ubercart and Drupal 7 - hook_add_to_cart
http://www.ubercart.org/docs/api/hook_add_to_cart
I am trying to hook into the add cart functionality of ubercart. I have created stock_control.module and stock_control.info files and enabled the ...
0
votes
1answer
136 views
pre-receive hook to prevent reappearance of a bad revision
Suppose I have had to use git filter-branch to remove a file from revision history. I want to ensure that all my collaborators update all their local copies before they push again. The obvious way ...
0
votes
1answer
332 views
Bash script for YUI Compressor to be used with Git
I'd like to make my website as efficient as possible, and part of that is minifying my CSS and JavaScript files. My goal is to be able to use the unminified files in development, but the minified ...
0
votes
1answer
489 views
How to apply client-side hook to all local repositories in git?
I create a commit-msg hook in myrepo/.git/hooks.
#!/bin/sh
message=`cat $1`
c=`echo $message|grep -c 'fff'`
if[ $c -gt 0 ];then
echo "Error"
exit 1
fi
exit 0
When I try to commit like so, an ...
1
vote
1answer
94 views
Git Post-Receive Hook is Inconsistently Adding Changes
I am trying to write a post-receive hook which will pull in all new branches pushed to a bitbucket account. Then, if the person who pushed those changes is a designated user of a particular ...
1
vote
1answer
257 views
how to process files on a branch in post-receive hook in git
I have a remote server on which I have created a bare git repository.
I would like to create a hook so that a given script is run on the latest code received on any given branch.
I know the ...
2
votes
1answer
212 views
Git post-receive-email: Unknown type of (commit)
I'm having an issue with Git's post-receive-email hook script. Here is what I did:
On my server, I initialized a bare repository using: git --bare init myrepo.git. My server's Git config file says ...
5
votes
2answers
618 views
What is the best way to write a git update hook that rejects invalid submodule commits?
I am attempting to write an update hook for git that bounces if a submodule is being updated to a commit ID that does not exist in the submodule's upstream repository. To say it another way, I want to ...
0
votes
1answer
88 views
New working copy created on git push hook
I tried to write a hook with Python. I have a problem while executing it after a push. For example after a push the working copy should be reset. Reseting is executed but on the wrong folder. I get a ...
1
vote
1answer
947 views
How can I install custom git commands (like git hooks) on Windows?
I am trying to use the git-hooks tool on Windows. But, I cannot figure out how to install the git-hooks.sh file such that I can type git hooks --install in Git Bash.
I tried putting it in C:\Program ...
0
votes
0answers
2k views
post-receive hook permission denied “unable to create file” error
Just got gitolite installed on my webserver and am trying to get a post-receive hook that can point the git dir in apache's direction.
This is what my post-receive hook looks like. Got this script ...
6
votes
3answers
385 views
Get Git repository's last commit
I have a central Git bare repository. When a push is made to that repo I want to run a post-receive hook. What that hook will do is create a message on a Basecamp project (using their API). I want ...
1
vote
1answer
907 views
Per-branch, per-repo commit hook in gitolite
I want to add a commit hook that works when a push is received on a gitolite/git server for a given branch and repo combination only (branch 'cat' on repo 'dog').
My environment:
git version 1.7.4.1, ...
0
votes
1answer
380 views
Automatically sync Trac and git on post-receive (using Bitnami on windows)
So I have trac installed with the trac-git plugin on Bitnami trac stack on windows. All is working fine however whenever I commit to my git repo I have to open use_trac.bat and then call trac-admin ...
1
vote
1answer
504 views
git-commit-notifier with gmail
First of all you have to know I'm total Ruby noob :)
I installed git-commit-notifier (http://github.com/ilozka/git-commit-notifier) on my system (Ubuntu 10.04) and followed all the installation ...
1
vote
0answers
28 views
How can I get a list of all modified files for submodules with git? [duplicate]
Possible Duplicate:
git: list of all changed files including those in submodules
I have a super repository that has many submodules that are regularly being updated. I have a post-receive ...
2
votes
2answers
419 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 ...
4
votes
1answer
140 views
Bash command within a git post-update hook is not found
I have the following code in a git post-update hook that cd's into my working directory and pulls from the bare git repo where this git hook lives:
cd $HOME/www/firefly
unset GIT_DIR
git pull ...
1
vote
1answer
993 views
git cannot execute python-script as hook
I have created a little pre-commit hook in python. This hook works like a charm under Linux, but in Windows it keeps telling me:
error: cannot spawn .git/hooks/pre-commit: No such file or directory
...
47
votes
3answers
9k views
Git commit hooks - global settings
I've written a Git post-commit hook and it works correctly. However, I want to add this hook to apply to all current (and future) git repositories I am working on. I tried adding the hook to my ...
1
vote
1answer
226 views
aborting git pre-commit hook when var_dump present
I am trying (but failing miserably) to make a git pre-commit hook that checks for the presence of a var_dump in my modified files and exits if it finds one. The problem that I'm having is that it ...
2
votes
2answers
490 views
git pull in hooks/post-receive failed
On the server, /home/git/xxx/hooks/post-receive:
#!/bin/bash
cd /var/www/xxx
git pull
On the server, /var/www/xxx was created like this:
cd /var/www
git clone /home/git/repositories/xxx.git
...
2
votes
1answer
82 views
How to replace local git hooks with updated versions with git init?
I have exactly the same question as this user here:
git init template, replacing modified hooks
I have a new template file in my global git hooks. However, the original template file was already ...
8
votes
2answers
5k views
How to install hooks in gitolite
I've read all the documentation about hooks, similar questions and a lot of code but I can't track where is the error in my procedure. I need to install a simple hook in my gitolite installation (made ...
2
votes
1answer
179 views
How to build the new branch pushed to github using Jenkins CI?
I've setup the Jenkins for the rails3 app to build the specs.
One can find many posts via google on how to setup the build trigger on the github push.
But what I want is to build the new remote ...
5
votes
3answers
1k views
git hooks : is there a clone hook?
We want to store some meta-information about the commit in an external database. During a clone or a checkout, this database should be referred and we copy the meta information to a file in the repo ...
1
vote
1answer
356 views
Git post-receive hook not working properly
I have a server with a git repository. Each time I make a push to that server I would like to regenerate my gitstats documentation for that repository.
In that machine if I execute the following ...
1
vote
0answers
23 views
How to implement a custom rules for pushing changes on hg or git in a way that is easy to deploy?
Use case: you want to prevent people from pushing to trunk when trunk is in marked as red - in this case you want to ask them to confirm before accepting this.
The problem is local .hg/hgrc hooks is ...
1
vote
2answers
369 views
With a git hook, how do I force or check user identity?
I'm trying to setup a gitolite server. One problem that I find annoying in git is the username is not checked when committing code.
This can lead to a possible "identity phishing" where user1 can ...
-1
votes
3answers
2k views
git website update strategy - how to sync dev and live repositories?
Here is how I have been constructing my git-powered-website update and backup strategy:
I have SSH access to the Linux VPS where the website is hosted. Here is what I did:
1) AT THE WEBSITE SERVER - ...
3
votes
2answers
203 views
Git plumbing command to find out which files have been changed in a given revision
I've created a hook that sends out notification emails when a developer pushes an update to his shared repository. This email includes a list of changed files, example:
A ...
0
votes
0answers
371 views
Git, Smart HTTP on OSX, configuration issue
I'm trying to make a Git repository server on OSX. I must use HTTP protocol but I want to be able to use hooks in Git as well. So the only option for me is to make Smart HTTP. I'm trying to generate a ...
13
votes
9answers
7k views
List of useful git tools [closed]
Reading SO I still find nice, new tools for using with git. If you know any, please share it answering this question.
My first proposal is:
gitolite, a tool for managing access to git repositories, ...
0
votes
1answer
196 views
Automatic PHP asset compilation & caching with git, heroku
I have some assets (ie, JS, CSS) that I need to compile for my CakePHP app hosted on Heroku utilizing AssetCompress. I'd like to automate the compilation process so that the files are cached and ...
0
votes
2answers
129 views
How do I retrieve the sha of git commit being generated in a commit-msg hook?
Hoping there is a way to discover the sha for the commit being generated. Im inside a commit-msg hook. I'd like to append the sha to the end of the commit message so my git gui can build a link to ...
4
votes
1answer
121 views
In GIT, how can I prevent people from changing or removing commits that have already been pushed?
We recently had an intern run "git reset --hard" and accidentally undo a lot of work on our main GIT repo. We are in the process of recovering the work, but I want to make sure nothing like this ever ...
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 ...
1
vote
1answer
2k views
Post-checkout hook with Git
Is there a way to trigger a hook after a new branch has been checked out in Git?
2
votes
1answer
2k views
Run tests in Jenkins automatically after each commit (change)
I an using jenkins and I would like my tests to run automatically after each commit.
I followed the instructions in the following link:
...
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 ...
3
votes
1answer
823 views
Gerrit change-merged Hook
I use git as my version control system and have set up a Gerrit site to do the code review. I would like to create a hook to do the following:
When the admin clicks the Submit button, a file (called ...
1
vote
2answers
275 views
Conditional pre-commit hook controlled from command line for GIT: Is it possible?
We have a nice pre-commit hook for GIT, as well as a nice commit-msg. The pre-commit hook does a syntax validation and the commit-msg does some other business logic. It all works well.
However, I'd ...
1
vote
1answer
114 views
What operations cause a remote repository to update multiple refs
While playing around with some hooks I noticed that the output from the hooks invoked when pushing to a remote repository are subtly different:
hooks/pre-receive
stdin: [[old-value new-value ...
0
votes
2answers
130 views
post-receive hook fails to update Trac ticket upon push with several commits for the same ticket
There is a Trac 0.11.7 environment, which is integrated with a Git repository using GitPlugin. This repository has a post-receive hook, which is a copy of the one provided by the GitPlugin team.
The ...
2
votes
1answer
844 views
Error in sideband demultiplexer with a git post-receive hook
I have set up one of my EC2 instances with git and using a post-receive hook I have it deploying to my server with this tutorial. This is the output from my console:
$ git push production master
...
16
votes
2answers
2k views
block push of trivial merge to git server
A while back I asked our developers to use rebase instead of merge before pushing. Eliminating trivial merges makes for a much easier to follow commit graph (ie: gitk, git log).
Sometimes folks still ...
1
vote
1answer
559 views
How to “sync”/revision-control an entire mysql database with all git commits and checkouts?
I want to "synchronize" a mysql database (and not just the schema) with all git commits and checkouts (probably via hooks) in Linux/BSD/Unix enviornment.
[Useful when controlling the entire ...
13
votes
4answers
547 views
How to add a file to the index in a git pre-commit hook
I've looked around for duplicates and while some of them have similar titles, I haven't found anyone having the same issue as I am, so here goes.
I've written a script that runs on pre-commit and ...
7
votes
0answers
637 views
POST hook on Bitbucket
How to use the POST url in bitbucket on private Jenkins?
I have been experiencing problems with bitbucket and their post commit.
Description :
...
0
votes
1answer
171 views
How can a post-receive hook written in perl get the branch name?
I have a post-receive hook that is written in perl. I need to be able to figure out which branch is being pushed to. How can I do this? I tried looking at @ARGV and $ARGV[2] without success.