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, ...
5
votes
3answers
354 views
update package.json version automatically
Before I do a small release and tag it, I'd like to update the package.json to reflect the new version of the program.
Is there a way to edit the file package.json automatically?
Would using a git ...
1
vote
2answers
148 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 ...
2
votes
1answer
182 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 ...
1
vote
0answers
48 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
386 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
44 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
1answer
140 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 ...
1
vote
1answer
176 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 ...
2
votes
1answer
328 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 ...
1
vote
2answers
264 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
0answers
163 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
1answer
91 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 ...
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
2answers
262 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
402 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
2answers
180 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
32 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 ...
2
votes
4answers
710 views
How do I check for valid Git branch names?
I'm developing a git post-receive hook in Python. Data is supplied on stdin with lines similar to
ef4d4037f8568e386629457d4d960915a85da2ae 61a4033ccf9159ae69f951f709d9c987d3c9f580 refs/heads/master
...
1
vote
0answers
225 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
121 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
277 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
124 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 ...
1
vote
1answer
185 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 ...
1
vote
1answer
215 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 ...
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
110 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
1answer
432 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
130 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 ...
4
votes
1answer
166 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 ...
1
vote
1answer
42 views
How to identify the name of the branch when receiving a push from local repository?
I want to identify the name of the branch with the incoming push each time it is received from local repo. I am planning to use the branch name in a update hook.
Pls let me know how to deal with ...
0
votes
1answer
302 views
git stash in pre-commit hook fails on first commit
I'm working on a pre-commit hook that uses YUI Compressor to minify any CSS and JavaScript files that have been staged for commit. After the files get minified, the minified versions automatically get ...
0
votes
1answer
355 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
140 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 ...
2
votes
2answers
612 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 ...
0
votes
3answers
288 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"
...
3
votes
1answer
161 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 ...
0
votes
1answer
562 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
297 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 ...
1
vote
1answer
100 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 ...
2
votes
1answer
223 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 ...
0
votes
1answer
89 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 ...
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
561 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 ...
6
votes
3answers
398 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 ...
0
votes
1answer
387 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
955 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, ...
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
448 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 ...
2
votes
2answers
297 views
JSHint on Git Push (Update Hook)
When a client pushes to a remote git repository (bare) I want a hook that automatically runs JSHint on the incoming changed files and rejects the commit if JSHint returns errors. I only care to make ...
4
votes
1answer
146 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 ...

