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, ...
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 ...
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 ...
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 ...
1
vote
2answers
138 views
Exclude commits from Git hooks?
Is it possible to exclude certain commits from being pushed to a service hook on Github? For example, if I only edit the Readme file of a project, it makes no sense to re-test the entire application ...
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 ...
1
vote
2answers
276 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
966 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
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
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
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 ...
3
votes
1answer
279 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
857 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
...
7
votes
0answers
643 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 :
...
13
votes
4answers
553 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 ...
1
vote
1answer
87 views
Sorta of pre-commit hook for adding annotated tags in git
Is there's any way to trigger hook on adding a specific tag?
The idea is to have a separate build branch and to allow adding some specific annotated tags only in that branch.
2
votes
1answer
701 views
Gitosis / Git does not execute post-commit hook
I just set up Trac and Gitosis and wanted to control the ticket workflow with the commit messages.
Unfortunately my post-commit hook is not executed. If I execute it on command line (as gitosis user) ...
3
votes
1answer
834 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 ...
0
votes
1answer
1k views
Git post-receive hook: “remote: Permission denied, please try again.”
I have a bare repository at /home/dan/repo/ and a working copy at /home/dan/www/project/.
I want to have working copy automatically pull its current branch from repo on each commit to repo.
I created ...
5
votes
1answer
76 views
How to version git&gitolite hooks?
Is there a possibility to nicely version and track git hooks? Can I safely have another (nested) git repository under the hook folder on server?
1
vote
1answer
1k 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
...
1
vote
2answers
426 views
Git hook to detect push --mirror
beside a main Git repository on a server (with Gitolite) I would like to have a possibility for each developer to set up a mirror it's own local repository. That's not difficult.
However, I want to ...
2
votes
2answers
363 views
managing website on windows using git
I have a website that is running on a Windows 2008 server. I want to know what is the best way to manage that site using git. Ideally I want an automated deployment, using a post-receive hook or ...
0
votes
1answer
239 views
git post-receive to manage website with generated files
I have a web application that I would like to bring under version control using git. I have done this on the server with several other sites using the following strategy.
$ mkdir ...
2
votes
1answer
377 views
Post-receive hook that auto deploy newly pushed data?
I'm looking to implement a post-receive script that would deploy my newly pushed data to a local folder.
Using Linux/bash I already done something equivalent, but I use git pull, and I often have ...
10
votes
10answers
7k views
How can I automatically deploy my app after a git push ( GitHub and node.js)?
I have my application (node.js) deployed on a VPS (linux). I'm using git hub as a repository. How can I deploy the application automatically, on git push ?
7
votes
2answers
6k views
Create a BitBucket git commit hook?
I just ported over a repo from GitHub to BitBucket. Although it does many of necessities, I'm finding it surprisingly difficult to find documentation for creating a git commit hook.
Originally I had ...
2
votes
1answer
627 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 ...
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 ...
0
votes
1answer
670 views
Setting up git commit hook for Redmine
I am trying to migrate the setup here at the office from SVN to Git and am setting up Redmine as the host for our projects and issue management (Currently we use a version of Gforge + SVN). I should ...
0
votes
1answer
420 views
git post-receive not executed
I have setup the following post-receive:
$ cat .git/hooks/post-receive
#!/bin/env sh
git checkout -f
which is executable:
$ l .git/hooks/post-receive
-rwx--x--x 1 nils nils 30 11. Jan 13:17 ...
1
vote
1answer
426 views
Set the name of a ZIP downloadable from GitHub or Other ways to enroll Google Transit project on GitHub
I wan to start a Google Transit project (a city transport feed for google maps) and for the purpose of collaboration I want to use GitHub. Now one great thing is that GitHub is offering a ZIP file ...
2
votes
1answer
448 views
Chaining git hooks
As many of you probably know, there can be only one hook type in git.
If two update hooks need to be evaluated. The git admin is left with two unmanageable solutions:
Merge the hook scripts ...
1
vote
1answer
2k views
can't push with gitolite - ENV GL_RC not set
I've got a similar problem to this post here: gitolite push error -> remote: ENV GL_RC not set
I've installed gitolite successfully as a non-root method with no warnings or errors. Hoever I can't ...
1
vote
1answer
316 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 ...
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 ...
0
votes
1answer
809 views
Why is my Git pre-commit hook not executable by default?
If you see the accepted answer in:
Aggregating and uglifying javascript in a git pre-commit hook, you'll see that I had to do a chmod +x on my pre-commit hook to get it to work.
Why is this not ...
2
votes
1answer
402 views
Aggregating and uglifying javascript in a git pre-commit hook
I'm using ready.js to aggregate JS files into an all.js file (without Google's Closure Compiler), and then using uglify-js to minify and obfuscate the code. I'd like to do all of this in a pre-commit ...
2
votes
1answer
244 views
Git : fatal: exec hooks/post-receive failed
I have a remote created with git --bare init.
When I push I get:
Delta compression using up to 2 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (4/4), 368 bytes, done.
...
1
vote
1answer
567 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 ...
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 ...
1
vote
2answers
209 views
Is there a way to check that a git tag matches the content of the corresponding commit?
In the company I work for, some projects have an project.info file which contains the current version of the program/library/whatever.
Actually, when someone wants to tag a version, he must first ...
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 ...
1
vote
1answer
72 views
How can I init/update git submodules in a remote?
I often use this pattern for easy deployment of websites:
I have a bare repo, which I push/pull to from my computer and this bare repo has a post-update hook that automatically does a pull in another ...
4
votes
1answer
868 views
git post-receive hook that grabs commit messages and posts back to URL
We are using a ticketing system that I want to automatically update as developers push their changes to the server. In order to update it, I only need to provide a specific URL with the commit message ...
2
votes
1answer
458 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 ...
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 ...
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 ...
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 ...
0
votes
1answer
397 views
How do I setup multiple configs for gitolite - post-receive hook email notification?
I have the post-receive hook running with a configuration in gitolite that emails a group when any files change in a repo on a certain branch. Now, I have a request to setup email notification for a ...
