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

2
votes
2answers
34 views

Workaround or git hook to make git recognize archives of text files

Is there a way to work with text files inside archives with git without persistently unpacking them? Presumably to make git to think of archives like directories, with the means of git hooks or ...
0
votes
1answer
136 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 ...
2
votes
1answer
117 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"] + ...
0
votes
1answer
103 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
2answers
174 views

GIT hook to prevent an experimental branch pushed to a release, or master branch

We have three main branches in our workflow. TEST (experimental), RELEASE (features going to next release), and MASTER (released only) We take feature branches from RELEASE, merge feature branches ...
1
vote
1answer
31 views

git pre-commit code modifications are applied after commit instead before

I wrote a pre-commit hook to increment the version number in the source. Why are the changes applied after the commit? What can I do to do that prior to the commit? #!/bin/sh # Hook to increment ...
2
votes
2answers
1k views

How to use git hook pre-commit to stop commits to master

I want to stop myself accidently commiting something to the master branch unless I am sure. So I tried this script to determine which branch I am on but there is a problem. When I create a new branch ...
0
votes
1answer
65 views

Git hook for diff sqlite table

I have a Sqlite db in a Git repository. Today I wanted to do a diff of a view in two different commits. I did it this way: $ sqlite3 -list file.sqlite "SELECT * FROM contact_list_detailed" ...
2
votes
1answer
62 views

Reloading the content of a yesod website with SIGUSR1

To reload the content of the yesodweb.com website, a reload route has been added. Anybody can initiate a reload by using wget with POST. This does not seem really secure. Would it be possible to ...
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 ...
0
votes
2answers
576 views

How can I deploy my websites using Git hooks?

I recently have started using Git in my daily workflow and I really love working with it. I have a bare online repo (git init --bare --shared) sitting on my VPS under a folder called website.git and ...
4
votes
1answer
166 views

How to test current commit and not the working tree?

I am trying to set up a pre-commit hook to test my project before any commit goes through, but I can't find how to make sure that only HEAD (with patches from the current commit) are tested and not ...
1
vote
1answer
81 views

Bypassing gitolite restrictions for specific commits

In a gitolite setup, is there a way to allow some commits to bypass some restrictions? More specifically, I want to deny some actions (like creating a branch) to prevent doing so by accident, these ...
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 ...
3
votes
1answer
564 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 ...
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 ...
1
vote
2answers
55 views

Push code to more then one origin

I want to do a git push, and the changes should be push to two different origin. Is there a way to push to more than one origin with one command with git? A nice hook maybe?
1
vote
2answers
134 views

How to prevent root from running git pull?

Have need to prevent root from updating a git (working) directory. Reasoning includes but not limited to: preventing undersired file-system ownership changes. None of the git hooks seem to prevent a ...
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, ...
3
votes
1answer
362 views

Using rake db:migrate in git hook - undefined class/module Encoding

I'm using https://github.com/thuss/standalone-migrations to perform db migrations in a cakephp environment. I am ultimately trying to perform db migrations automatically after checking out different ...
2
votes
1answer
41 views

Duplicate Signed-off-by lines

I had a new git repository with only two commits, and one push to GitHub. Then I did chmod -R a+x * .* to make all my files executable. I then also removed a file, but when I tried git commit -m ...
0
votes
3answers
274 views

merging in git post-receive hook

I use the following post-receive hook: GIT_TOP=`git rev-parse --show-toplevel` while read oldrev newrev refname do echo "=== $oldrev" echo "=== $newrev" echo "=== $refname" ...
1
vote
1answer
140 views

Git - How to reject commits containing tabs on origin

Can someone share a "origin" side hook that checks if the received commit introduces a wrong whitespace character (in my case tab) and rejects that push? I can't do it pre-commit because I have ...
3
votes
1answer
151 views

Git post commit: skip --amend and rebase

I have a post-commit hook that does stuff un ruby. It works very well but in some cases I would to skip the code execution when I a rebasing or when I do a --amend. Do someone has an idea how I could ...
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 ...
1
vote
2answers
247 views

Git post-receive hook error on server

I am trying to have a git 'post-receive' on my server. I am using the following code on the hook file: #!/bin/bash #CONFIG LIVE="/home/ubuntu/public_html/testing" read oldrev newrev refname if [ ...
1
vote
2answers
229 views

Testing what is about to be committed in a pre-commit hook

The internet is absolutely littered with incorrect and non-ideal answers to this question. This is unfortunate because you would think this would be a common thing you would want to do. The problem: ...
1
vote
1answer
86 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 ...
1
vote
1answer
105 views

Check if commit is first commit in pre-commit hook

Currently I'm using the pre-commit hook to disallow committing to the master branch (forces me to work on other branches and merge in changes). This doesn't allow me to do an initial commit on a ...
0
votes
1answer
35 views

Is it possible to run a Git hook after adding a file to a project?

Is it pssobile to run a git hook after adding a file? For example, after running: git add someFile.php a script would be triggered.
1
vote
1answer
383 views

How create right git hook in PhpStorm on PHP?

If add git hook to pre-commit with following code then you get error "Error!" in PHPStorm. #!/usr/bin/sh echo "Error!" exit 1 But if implement this on PHP you cannot get this error message in ...
3
votes
3answers
653 views

using git hook after commit

I have just started writing a web application. I am using GIT for version control and I have git and web server in the same computer. Application has 3 environments: dev, test and production I want ...
3
votes
2answers
139 views

Are git hooks pushed to the remote when I 'git push'?

If I create a new hook script in my local repository in repo/.git/hooks/post-commit and then I run "git push" are the hooks pushed to the remote? Then, when the other developers run "git pull" from ...
0
votes
0answers
31 views

Getting the list of files which are to be committed in the pre-commit hook with Git [duplicate]

Possible Duplicate: Git pre-commit hook : changed/added files It may be good to add a code verifier or checker of some sort before you commit a list of source codes. Facebook even ...
1
vote
0answers
219 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", ...
0
votes
1answer
120 views

Restricting user's push commands privileges

How can I not allow the users to make pushes that are going to create a new branch in remote repository? And is there anyway not to let the user push to a certain remote branch in github ,e.g restrict ...
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 ...
2
votes
2answers
117 views

Git main repository update only if all tests pass, how to do?

I am trying to create git hook on update in main git repository. I want to prevent pushes that break any tests. How to get in bare repository code of project that will be after update to run tests for ...
23
votes
4answers
5k 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?
1
vote
2answers
47 views

How to advance a version string in a file hosted on GitHub?

I have a repository on GitHub, I want the repository to alter a specific file every time there is a commit/push to include the revision number as part of the version string. i.e. My version string ...
1
vote
1answer
186 views

How can I open a TTY for interaction with git-push hooks?

I am using the git-deploy Ruby gem to deliver an application to the staging server. The deployment is performed with SSH keys. In my after_push script I want to run a command with sudo, which ...
1
vote
1answer
177 views

Git: Understanding post-receive

I'm fairly new to the Git world after moving from SVN recently and I'm trying to understand the post-receive hook. Hopefully I'm correct in saying that this is a server-side hook but how would I use ...
3
votes
2answers
930 views

Can a git pre-commit hook add a file to the repo?

I'm keeping a text file of my git log in my working directory, and I have a script that updates it after a commit. This is fine, but the effect of this is that the version that is inside the repo is ...
4
votes
1answer
159 views

How to protect against pushing large binary blobs in git?

I have a central git repository which myself and several collaborators regularly push and pull from. In the past I have committed a large binary blob by accident, which requires rebasing to fully ...
2
votes
1answer
69 views

How to automaticaly run another application affter pull on repository?

I have 2 Git repository. After push in my main repository automatically pulling another (by hook). What command can help me run external application for doing additional work?
0
votes
0answers
109 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 = ...
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
407 views

How to force GIT post-receive hook not to be executed by the client

New to GIT trying to implement a workflow. Our local office setup uses a shared Debian Samba disk with Apache, Linux, etc. We therefore clone projects from a "local path" of type ...
3
votes
1answer
736 views

Send mail after git commit not push

I need to send email with diff after commit to the repository. I know how to send emails after push, but it is not working for commits. For pushes I've created hook post-receive that gets parameters ...
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 ...

1 2 3 4 5 7