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, ...
4
votes
2answers
2k views
Post Commit Hook Not Running
My post commit hook is not running after git. I have verified that the hook does work if I just run it from the terminal. The code in the hook is:
#!/bin/sh
#.git/hooks/post-commit
# An example ...
1
vote
2answers
942 views
git init template, replacing modified hooks
I am constantly updating my local git hooks. I have a repo to house my .git template. This means that I am constantly running git init --template=../git-template to update repos with my hook changes.
...
0
votes
1answer
9 views
Git on windows: how to get pre-receive hook to run on the server using a file share
Unfortunately I have to run git on Windows.
I am sharing the git repository using a windows share (e.g. //ip address/GitRepo.git)
The problem is that git seems to treat this as a local path and runs ...
0
votes
1answer
21 views
How to read the content of a file in a post-receive hook?
I'm building a hook for the post-receive and I need to read the content of a file (VERSION). This file can change along with the commit (new version) so I can't read an existing repo.
I tried this ...
0
votes
1answer
24 views
Not being able to pull in a git hook (bash script)
I am working on a website, on an Ubuntu 12.04 server. When I push code to my website, I want my hook to automatically pull the code in my apache folder. The following commands update my website to the ...
3
votes
1answer
33 views
git workflow with multiple, different remotes
At work, we developed scripts and extensions to Nagios. We provide a supervision service to ~30 customers (each customer having a Nagios server). Some customers have specific configuration (new ...
0
votes
2answers
65 views
git server side 'update' hook in bitbucket
I'm looking for way to create a git server side push hook (will be used to enforce referencing JIRA ticket number in each commit message).
According to pro git - git hooks, the git hook to use on ...
8
votes
1answer
128 views
Use Git's commit message cleanup mode from commit-msg hook
git help commit says the following:
--cleanup=<mode>
This option determines how the supplied commit message should be
cleaned up before committing. The <mode> can be strip, ...
2
votes
1answer
166 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
2answers
578 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
40 views
github api does not return my post-receive web hook
I have manually added a web hook to my repository, but when I query the repository using the API I get
{
"message": "Not Found"
}
what is wrong?
the url: ...
0
votes
1answer
21 views
Can I set a hook using API on public repo owned by someone else?
Is it possible to register an event hook on a public repository not owned by me using the github API? In other words, is there a way to listen to repo updates without asking the owner to add a hook ...
3
votes
4answers
2k views
Receiving emails on GIT push
I am used to subversion, where the collaborate group would receive an email whenever someone commits.
Is there a similar feature on GitHub, so the people working on the repository receives an email ...
5
votes
3answers
48 views
Want to setup a hook that copies committed files to a particular folder
Background: Developing a Facebook app using PHP Laravel framework & MySQL for database.
I have setup Gitlab on our development server and created a repository on it where the team has been added ...
0
votes
2answers
60 views
How to amend git commit message in post-receive hook [duplicate]
I need to modify commit messages in post-receive hook (add bug tracking id). Is there a graceful way to do it or do I have to script "git rebase -i" stuff?
1
vote
2answers
26 views
Git post-receive permissions
I have a git repository setup on Media template gs hosting. I'm using a post-receive hook to deploy my application when I push to the origin. The hook runs fine, but if I try and make it update a ...
1
vote
2answers
3k views
Automatically synchronizing a Subversion repository and a Git repository
My project has a Subversion repository on a network file system, and a new team would like to access it using Git, and be able to commit to it and get updates from it.
What I have in mind is to ...
1
vote
0answers
43 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 ...
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 ...
3
votes
2answers
752 views
How can I automate Pivotal Tracker & Github Integration?
Pivotal Tracker and Github have great integration: Once it's set up, each commit which is prefixed by the Pivotal Tracker ID will appear under the corresponding Pivotal Ticket automatically, for an ...
2
votes
1answer
47 views
Including submodules in git checkout to GIT_WORK_TREE in hook
Is it possible to include submodules when using the following code in a post-update hook?
GIT_WORK_TREE=/path/to/directory git checkout -f
What other options would I have to distribute code, ...
1
vote
2answers
50 views
Git push - “Everything is up to date” - But working tree files don't get updated. what to do?
1) I have a prime repo on a remote server host.
2) I have a bare repo on a remote server host.
3) I have a clone of the bare repo with a working tree on my local computer, and the bare is setup as ...
0
votes
1answer
50 views
How to stop a pull request being closed with unmerged commits
Could anyone suggest a way of stopping/informing a user that there is an open pull request on github on a branch they are trying to delete?
We currently use the following branches master,rc,hotfix ...
2
votes
1answer
96 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 ...
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 ...
0
votes
0answers
75 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
1answer
25 views
make gerrit abort commit push if its message is invalid
I am working with gerrit 2.5.1.
I want to abort commit push from an user if its message does not comply with a format forced by the company.
So, imagine that i want that users only be able to push ...
1
vote
4answers
55 views
How to get back my deleted and committed file in git repo?
I have a project on git. My project has files like:
file1.js
file2.html
file3.js
file4.css
file5.html
file6.jpg
file7.html
file8.js
file9.css
I did a git -rm filename for all the files and ...
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 ?
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 submodule hook solution [duplicate]
I have a situation where our organization is utilizing a git submodule, but our development team unknowingly updates the submodule reference to something out-of-date. I think this is because a ...
1
vote
1answer
30 views
How to semi-manually control a file in git?
My problem is as such:
I have a repository for my dotfiles which includes the .gitconfig file.
I store this repository on github and do not want to show my email/name there.
Simple solution:
use ...
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 ...
5
votes
2answers
307 views
How is it possible to use raw_input() in a Python Git hook?
I am writing a pre-commit hook for Git that runs pyflakes and checks for tabs and trailing spaces in the modified files (code on Github). I would like to make it possible to override the hook by ...
1
vote
1answer
34 views
Having git reformat source on push
I'm mastering a development team where everyone worked with Eclipse and the same formatting settings.
Now some of the developers have reasons to switch to other IDEs, which format source code ...
0
votes
1answer
48 views
Add commit author as sender for hook/post
When someone makes a commit, I want the author to be set as the sender. I've narrowed down this piece of code in post-receive
send_mail()
{
if [ -n "$envelopesender" ]; then
...
2
votes
1answer
151 views
How to use self-hosted git server as production server?
I'm developing a website, and using my own laptop as development server, while using my online server as the production server. And I'm using git to manage my project.
I've used heroku before, and I ...
1
vote
1answer
116 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 ...
0
votes
1answer
100 views
Fixing mac/windows new lines with git pre-commit hook?
In our office we working in a team of about 10 developers. Most of them have a Mac machines. Recently I've realise when I'm checking differences of my work (after changing only one line of code) ...
3
votes
1answer
84 views
Git server hook: get contents of files being pushed?
I am trying to enforce some coding rules in my team. To that end, I've written a number of client-side hooks, which work all right, but now I want the same checks to run when a developer pushes their ...
1
vote
1answer
52 views
How do I get added/changed files in a pre-commit hook?
I want to write a hook that checks certain coding conventions in files being committed, and if those are violated, rejects the commit/push. However, in my "rejection message" I want to tell the ...
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
...
5
votes
3answers
312 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
0answers
50 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 ...
3
votes
2answers
77 views
Make Github push to a remote server when it receives updates
What is the set up for having Github automatically push any updates to a remote server?
This is useful for maintaining a codebase on Github, and having a website run off that codebase.
I have my ...
0
votes
0answers
71 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 ...
1
vote
2answers
49 views
git post-commit hook not executed
I'm trying to implement a way to include git commit data into a LaTex document using the method described here.
The hook looks like this:
$ cat post-commit
#!/bin/sh
cd ../..
git log -1 ...
2
votes
2answers
320 views
git - checkout single file under bare repository
On the server I have bare repository which is origin for development process and to simplify deployment to QA environment.
So in post-receive it simply does
GIT_WORK_TREE=/home/dev git checkout -f
...
2
votes
2answers
279 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 ...
0
votes
0answers
47 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 ...
