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

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 ...
23
votes
4answers
4k views

Git remote/shared pre-commit hook

With a one official repository as the remote, and multiple local repositories cloned from it, can a pre-commit hook be scripted on that main repository and be enforced on all clones of it?
2
votes
1answer
1k views

Gitosis post-receive hook to deploy repository getting public key errors

I have gitosis setup on my server and I'm trying to create a post-receive hook that will checkout changes to a working directory on the remote machine. Initially I got an error saying cannot open ...
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 ...
9
votes
10answers
6k 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 ?
23
votes
3answers
11k views

Local executing hook after a git push?

I've looked at the githooks manpage but unless I'm missing something I don't see an option for local, post-push git hooks. I'd like to have one that updates the api docs on my web server (for which I ...
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, ...
17
votes
2answers
3k views

Commit in git only if tests pass

I've recently started using git, and also begun unit testing (using Python's unittest module). I'd like to run my tests each time I commit, and only commit if they pass. I'm guessing I need to use ...
9
votes
4answers
4k views

change default git hooks

Not sure if this is possible in git (I haven't found it but I may be using the wrong vocabulary in my searches), but it be would useful to be able to modify and enable hooks as the defaults for all ...
9
votes
1answer
2k views

git hook post-merge - error: cannot run

To trigger a git hook after a pull i made a post-merge hook. The script looks like this: #!/bin/sh git log > gitlog.txt The file is called 'post-merge' and has the same owner as the one that ...
7
votes
1answer
2k views

How do I react to new tags in git hooks?

I'd like to set up a git hook that creates a CDN-style directory structure based on incoming tags. So, for example, if the last tag in the local repository is "v1.2.1" and I pull a commit with ...
7
votes
2answers
2k views

why it is not possible to git add .git/hooks/my-hook

I would like to have some hooks always present in a clone of a given repository. Is there a way to add a file in .git/hooks in the repository? Thanks
1
vote
1answer
103 views

deploying a website/webapp via git/gitolite permissions error

I've setup a development/testing server where developers can push repositories to a remote repo/webserver via gitolite/git. On the repository site everything works well and developers can use the ...
6
votes
2answers
2k views

GIT pre-receive hook

Is there a way to change the file that is being pushed to the server using a server-side pre-receive hook? Say I want to add something to the end of a file like: //End of Org each time someone ...
30
votes
3answers
6k views

getting “fatal: not a git repository: '.'” when using post-update hook to execute 'git pull' on another repo

I'm new to git so I apologize (and please correct me) if I misuse terminology here, but I'll do my best. I'm trying to set up a bare git repo (hub) and a development site working copy (prime) on a ...
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 ...
13
votes
4answers
2k views

Git hooks management

We use custom-written Git hooks in our project. Hooks are stored in a project's repository, and, when they do change, to get a new version each user must copy them manually in his .git/hooks ...
9
votes
3answers
2k views

How to automatically push after committing in git?

How do I set git to automatically push to a remote repo (including automatically providing my passphrase) after each commit to the local repo?
3
votes
1answer
551 views

git gitolite (v3) pre-receive hook for all commit messages

I am trying to enforce a policy where each push gets rejected when even one of the commit messages does not satisfy a rule. I've distributed a hook to the devs in order for them to use it in their ...
6
votes
3answers
1k views

Minify CSS files via git hook

My ideal situation is to automatically minify CSS files and add them to the git commit. I'm not sure if #4 below can be done, but I would like the following flow to be performed: Modify CSS file Add ...
6
votes
5answers
3k views

git: empty arguments in post-receive hook

I'm writing post-receive hook basing on the post-receive-email script from the contrib dir, but it seems that the oldrev and newrev arguments are empty. The script looks like this: #!/bin/bash ...
-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 - ...
6
votes
2answers
1k views

Append ticket number using git commit hooks?

So my branch is named after bugtracker ticket number, something like "issue-1234", and we have a convention to always write down ticket number in commit message. I'm wondering if it's possible to ...
5
votes
1answer
3k views

git post-commit hook - script on committed files

Can I see somewhere an example post-commit hook to run a script on each committed file? eg. git add file1 git add file2 git commit -am "my commit" and the hook executes: myscript -myparams ...
2
votes
1answer
2k views

from command line ok but the hook (git)

I want to automatically update my redmine project repository after anybody pushes into remote repo. Currently gin in redmine is up and works fine. But after automatic update using a hook I get The ...
2
votes
1answer
2k views

Have remote git repository refuse merge commits on push

What I want to do: I want to disallow any merge commits to be pushed to the central repository. The only exception being if the merge is between branches that exist in the central repository. I ...
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 ...
1
vote
1answer
70 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 ...
10
votes
1answer
1k views

How can I have linked dependencies in a git repo?

In my scripts, I often use libraries (mine or others') that have their own repos. I don't want to duplicate those in my repo and get stuck with updating them every time a new version comes out. ...
5
votes
2answers
581 views

Dissallow deletion of Master branch in git

I'm trying to setup a git hook that will disallow anyone to delete the master, alpha, and beta branches of our repository. Can anyone help with this? I have never done a git hook so i don't want to ...
15
votes
8answers
3k views

Can a Git hook automatically add files to the commit?

I'd like to add an automatically generated file to the same commit using a pre- or post-commit hook in Git, dependent on the files that were modified in that commit. How would I go about this? I've ...
9
votes
1answer
711 views

Tracking changes to hooks in .git/hooks

Is there a way to track git hook changes? I have three hooks that only show up on my machine, not when my other developers fetch. Trying to git add doesn't work.
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 ...
10
votes
2answers
5k views

Git post-receive hook not working

We're using git with a central repo (using Gitosis). I've created a post-receive hook to generate an email to the dev mailing list whenever changes are pushed to the central repo, and to generate ...
7
votes
2answers
5k 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 ...
5
votes
2answers
616 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 ...
5
votes
5answers
3k views

How do I hook a git pull on the remote?

Is there a way to hook when a git pull happens on the remote (similar to a pre-receive or post-receive). Basically I'd like to be able to cause the remote to commit whatever it has when there is a ...
4
votes
2answers
926 views

Prevent pushes to git containing tabs in certain files (e.g. *.cpp, *.h, CMakeLists.txt)

I'd like my remote repository to refuse any pushes that contains a file that contains a tab, but only if the file belongs in a certain class (based on the filename). Is that possible? I have looked a ...
3
votes
1answer
125 views

Git hook to detect file changes that contain a certain string

I want to warn a user if their code includes a certain string and alert people via email. Right now I'm using a post-receive hook because the detection needs to be done on the server side. I am ...
2
votes
1answer
116 views

How to embed an updated git-hash into Version.hpp?

Original Title: How to make git ignore my file regardless of branching? I have the following post-checkout file which works as expected: #!/usr/bin/ruby cmd = ENV["HOME"] + ...
2
votes
1answer
158 views

git ignore filemode config isn't working

I am using gitolite git server on a ubuntu linux server. I used a hook that will be called on every push and will update a server's directory(which include live site's source code). Now, whenever I ...
2
votes
1answer
840 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 ...
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?
10
votes
1answer
1k views

Egit hooks do not get triggered

I have a git repo with a pre-commit hook that intentionally fails 100% of the time. cat .git/hooks/pre-commit > exit 1 If I try to commit through the command line, it fails as expected. ...
4
votes
4answers
5k views

Git post-receive hook not working

My setup is a windows XAMPP server, with cURL enabled, and Git and Hudson installed. Hudson polls Git every minute to look for changes, and if it finds them, it creates a build. I use this build as my ...
3
votes
1answer
1k views

How to execute a command right after a fetch or pull command in git?

I cloned the GHC (Glasgow Haskell Compiler) repository. In order to build the compiler, you need several libraries, all of them are available as git repositories too. In order to ease ones live, the ...
3
votes
2answers
3k views

Git: convert carriage return \r to new line \n with git hook?

A fellow coder uses a Windows computer that is putting carriage returns everywhere in our source. Is there a way to write a git hook that converts all \r\n to \n? Note I haven't used git hooks ...
2
votes
2answers
563 views

How can I add a custom git hook to a GitHub Enterprise repo?

I've fired up an instance of GitHub Enterprise (11.10.272) and created a repository. I've written a pre-receive hook in Ruby which I'd like to use with that repository. GitHub Enterprise, like ...
2
votes
2answers
359 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 ...
2
votes
1answer
399 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 ...

1 2