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, ...

learn more… | top users | synonyms

3
votes
1answer
277 views

Git hook for merge conflicts

Is there a git hook I can use for merge conflicts? After a failed git merge, it would be great to be able to write a script that opens all files with conflicts in $EDITOR. Unfortunately the post-merge ...
2
votes
1answer
88 views

Git post-checkout - how to reject push if Composer installation fails

So I've set up a post-checkout hook on my server that will run Composer #!/bin/sh # Composer Git Checkout Hook PROJECT_NAME=example.com cd /home/www/$PROJECT_NAME/htdocs unset GIT_DIR # Process ...
2
votes
1answer
304 views

Howto sync database with git and git hooks and howto debug if it doesn't work

On OS: Ubuntu 12.04 I've got a drupal deployment (live website) and a staging environment (test website) on my server. Each time I pull changes from my staging website I want to synchronize the ...
2
votes
1answer
211 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 ...
2
votes
1answer
622 views

git post-receive hook in php

I want to be able to execute a php hook on post-receive hook, to copy files from the git repo to web folder on the same server and only run if it was pushed was made on a master branch ignoring other ...
2
votes
1answer
49 views

switch a branch in a remote git repository

when i deploy production code i simply do "git push production" - i have a post-receive hook that does this: "git checkout -f" - that will update our production code with the latest push. In this ...
2
votes
1answer
457 views

Git hook to prevent creating new branches from specific branches

I'm starting to play around with git hooks, and I'd like to create one to prevent a developer from creating a new branch when on a specific branch. The current process in our company is meant to look ...
2
votes
1answer
178 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 ...
1
vote
1answer
43 views

Using GIT hooks to modify release notes

We have a GIT repository with many contributors, and we constantly run into merge conflicts with the release notes file. Is there a good way to prevent them? I was thinking of a git post-upload ...
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
937 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 ...
1
vote
1answer
314 views

Update a Git Repository through a Git Hook in Python

I'm using python to write a post-receive hook that will hopefully serve for automatic deployment of all of the updated files in my project. Essentially, every time the "deploy" branch is pushed, it ...
1
vote
1answer
362 views

Using pre receive hook in git to identify the command run

Is there any way using a HOOK that I can find what was the command that was run from the client side. this should include all the command options that was sent from the client side. for example I ...
0
votes
1answer
24 views

prevent new branches being created in a git bare repo

We have our main bare repo which has a hook that is supposed to push a specific branch to another remote bare repo. The the other repo is only supposed to have the one branch. The post-receive hook ...
0
votes
1answer
67 views

get bitbucket commit message for each push

I want to fetch the commit message to my bitbucket repository each time a user is doing any push operation. How can I do that? I am in development version. So is there any way by which I can post to ...
0
votes
1answer
34 views

What is the reliable way to get commit hash after commit-msg hook?

I'm writing a script which is going to both pre-process and post-process git commit. For pre-processing I'm going to use commit-msg hook to add some information to commit message, but for ...
0
votes
1answer
55 views

Git post-receive hook leaves files to be committed

Three places git is installed: Local, Bare, and Development. I push from Local to Bare, post-receive hook pushes my dev branch from Bare to Development. The commits appear in the git log just fine, ...
0
votes
1answer
98 views

Git pre-receive hook and submodules

I have a pre-receive hook on a remote bare Git repo that will run tests, compress some files and generate a build ID when I do from my laptop: $ git push production master The simplified version ...
0
votes
1answer
134 views

Unable to symlink to the .git directory

This is probably something silly, but searching around I haven't been able to find the answer. I'm trying to setup pre-commit hooks for my git project in a way that the scripts can be versioned along ...
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 ...
7
votes
0answers
633 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 : ...
2
votes
0answers
95 views

GitHub post-receive hook flow

I have a repo on GitHub (Enterprise, for what that's worth) that I use for my app. I also have this app deployed on a development server on the same network. I've done some reading on Git hooks, and ...
2
votes
0answers
435 views

jenkins not responding to github webhook`

I got Jenkins talking to Github, and manually I can initiate a build and it succeeds! This is a private Github repo. I can't get the webhook to work, so that when I check-in in my repo, Jenkins ...
1
vote
0answers
41 views

Git Post-receive deployment is slow

We are testing git version control with our websites. The current setup has two bare repositoriees on a network shared drive /g/ (one for intranet and one for internet). When pushing to this ...
1
vote
0answers
49 views

git hooks — preventing commit to get into topic branch

I need to stop commits to happen if the message is not properly formatted. I know it is possible to do it on the master branch with the pre-receive hook. The problem is that I don't want to do that ...
1
vote
0answers
73 views

GitHub for mac not behaving properly with post-commit hook

I usually use GitHub for Mac to commit code to my GitHub projects because it makes it a bit quicker to do. For my current project, I had to set up the following pre-commit hook: if [ -e ...
1
vote
0answers
125 views

prepare-commit-msg test the output for different scenarios

I made a prepare-commit-msg hook that will add a lot of data to the commit message that will be presented to my developers. I want to test the output of the prepare-commit-msg hook automatically so i ...
1
vote
0answers
72 views

Back up a git remote repositore with git hooks

I have some puzzle peaces and it would be great if someone could help to master the pieces together to have a whole picture. I have a couple of devs who develop on serveral git repo's locally and ...
1
vote
0answers
47 views

Pushing Git repo through SSH chain

I just started a new job, which is trying to start using Git for version control. I am trying to help them with the process but it is turning out to be more complicated than anticipated. Currently, ...
1
vote
0answers
144 views

Pycharm (or Aptana Studio 3) and git pre-commit hook

I have a pre-commit hook in my project - just for not commiting broken code: python manage.py test some_app It works okay from command prompt, but not from IDE's (not PyCharm, nor Aptana Studio 3). ...
1
vote
0answers
215 views

git pre-receive hook - getting the newest code

I am trying to write a pre-receive hook for git that will pull the latest version of the code being pushed and run unit tests against it. My code is below, but when it gets to "git checkout $newrev", ...
1
vote
0answers
268 views

Git deployment with post-receive hook

I want to develop my websites per git, but I have some sort of chicken and egg problem. There is one server with an git --bare repository (the main repo; /var/dev.git) one clone for the doc-root ...
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
0answers
91 views

For remote hook, like post-receive, how to get the permission list for wildcard repository in gitolite?

Working on the remote hook, post-receive, to send out notification emails by post-receive-email, and I am wondering if we can get the permission list just in post-receive for wildcard repositories ...
1
vote
0answers
190 views

tried to add a new update.secondary hook to my repos in gitolite and now git push fails

remote: Undefined subroutine &main::repo_rights called at hooks/update line 41. remote: error: hook declined to update I have removed the update hook from all of my repos in order to get around ...
1
vote
0answers
120 views

Git push size in pre-receive of the master

I am trying to restrict the size of the git push using a pre-receive hook. In the case of svn I can do it with a precommit hook by checking the size of the transaction file. I am not sure how to do ...
1
vote
0answers
483 views

mysqldump - git hook - what does it allow?

With mkb user help, I've build this pre-commit hook: #!/bin/bash -e DBHOST=dbhost.yourdomain.com DBUSER=dbuser DBPASS=dbpass DBNAME=dbname mysqldump -h $DBHOST -u $DBUSER -p $DBPASS -d $DBNAME ...
0
votes
0answers
73 views

Automatically keeping shared git subtrees in sync

On our server we have different git repos for different projects that share some components as sub-trees. It is pretty important to me that they remain sub-trees, because we do active development in ...
0
votes
0answers
22 views

Prevent git from rebasing already remote-pushed commits

I want my git repository to not rebase commits that already pushed. 'pre-rebase' hook would be the right choice for this I think, but I couldn't write the hook code. Does anybody know that how to ...
0
votes
0answers
23 views

Git hook whenever a symbolic reference will be updated?

I use git new-workdir and often run into the problem that I mistakenly update a reference that's checked out elsewhere, which makes a mess because the workdir and index both get out of sync. I would ...
0
votes
0answers
70 views

Create Github hook to trigger Bamboo build

I created a Github Service hook to trigger a build in Bamboo. This is the Build Key I entered in Github master:GAUTR-UNIT This only triggers the master branch. How can I trigger the other branches ...
0
votes
0answers
43 views

Directly access PHP file in Wordpress root needed for auto-pull with Github

I've been following Dan Eden's Github Workflow guide, and I'm on the last stage where you make a PHP file and put <?php `git pull`; ?> in there and hook it up to Github through the Service ...
0
votes
0answers
90 views

Bitbucket post management service hooks

I want to get commit messages to my web app. I am doing following: In my git repository, added a POST service with post url as http:/ /localhost:9000/myGitHook/ or http ...
0
votes
0answers
148 views

Git hooks/post-update not working

hooks/post-update not working automatically when i push thing to my repo. cd /var/www/domain.com/ || exit unset GIT_DIR git pull hub master exec git update-server-info but when i manually do ...
0
votes
0answers
31 views

Using Push Hooks with Git for Licensing

I would like to implement licensing at my organization on Github / Bitbucket by requiring all files committed that are not metadata files (readmes, etc.) to have some licensing blocks. I assume that ...
0
votes
0answers
106 views

How do I make my node.js commit hook work in Windows?

I am working on a node.js project in windows, and I am trying to create a commit hook that runs in node.js. I tried to do this by creating a post-commit.js file with the code var spawn = ...
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 ...
0
votes
0answers
370 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 ...
0
votes
0answers
156 views

git email notification - multiple destinations that are unrelated

I have the Andy Parkins script setup to send post-receive email notifications. These are to fulfill a contract with a vendor, so the emails go out to the vendor. Now, I have an internal group who ...
0
votes
0answers
311 views

how can I check that 'git fetch' did its job?

I have bare repo created by git clone --bare git@domain.com:linode.git I need this special for redmine to browse the original repo. After each update of the original repo I need to update this redmine ...

1 2