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

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
23 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
32 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 ...
8
votes
1answer
125 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, ...
0
votes
1answer
20 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 ...
2
votes
2answers
38 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
2answers
59 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
23 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
0answers
41 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 ...
0
votes
2answers
62 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 ...
5
votes
3answers
43 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 ...
2
votes
1answer
44 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
49 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
48 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
87 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
0answers
73 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
24 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
54 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 ...
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
29 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 ...
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
147 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
104 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 ...
3
votes
1answer
81 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 ...
1
vote
0answers
49 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 ...
0
votes
1answer
97 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
2answers
76 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
70 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
48 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 ...
0
votes
0answers
43 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 ...
1
vote
2answers
86 views

execute script on git init

I would like to automate some tasks I made every time I use git init command. I looked at the different templates but I don't even know if it's possible to execute a script directly after an init. ...
2
votes
1answer
54 views

Debug the execution of a git hook

How would I setup my development environment to catch breakpoints and debug the execution of a git hook? Lets say the hook in focus is pre-commit and that the following groovy script needs to be ...
2
votes
1answer
47 views

How can I cd outside my git hook directory

I'm writing my own git post-receive hook in ruby, and it resembles something like this: if !File.exists?(rep_dir+repo) puts "Cloning repository #{repo} into #{rep_dir}." `cd #{rep_dir}; ...
1
vote
3answers
192 views

How can I automagically make a checkout upon push?

Consider the following situation: I have a git repository foo.git that contains code of a javascript project. In this repository there is a branch production that contains the state of the code as ...
0
votes
1answer
67 views

get bitbucket commit message for each push

I want to fetch the commit message to my bitbucket repository each time a user is doing any push operation. How can I do that? I am in development version. So is there any way by which I can post to ...
0
votes
0answers
90 views

Bitbucket post management service hooks

I want to get commit messages to my web app. I am doing following: In my git repository, added a POST service with post url as http:/ /localhost:9000/myGitHook/ or http ...
1
vote
2answers
52 views

Is there a way to invoke a script on git status command?

I am managing my svn repositories as a git repo through git-svn tool, but there is no way to handle my svn externals. This problem is solved by treating each external as a git-svn repo. This is done ...
2
votes
2answers
75 views

Git post-receive hook clone successful, but reporting 'not a git repository'?

I have a post-receive hook inside a Git repository that clones the repository into another directory and then cds into that directory. #!/bin/bash --login GIT_REPO="$HOME/oliverjash.me.git" source ...
2
votes
0answers
95 views

GitHub post-receive hook flow

I have a repo on GitHub (Enterprise, for what that's worth) that I use for my app. I also have this app deployed on a development server on the same network. I've done some reading on Git hooks, and ...
0
votes
1answer
34 views

What is the reliable way to get commit hash after commit-msg hook?

I'm writing a script which is going to both pre-process and post-process git commit. For pre-processing I'm going to use commit-msg hook to add some information to commit message, but for ...
0
votes
2answers
86 views

Git post-receive hook to clone and checkout two branches into two separate directories

I have a Git repository, and I need to write a post-receive script that checkouts two branches into two separate directories and then performs some actions. I have the following script that works for ...
4
votes
1answer
48 views

How can I determine which commits were squashed in git?

I'm writing a script which keeps reference of some commits in a repository, but if some commits gets squashed then references become invalid. I know that there is pre-rebase hook, but no post-rebase ...
1
vote
1answer
43 views

Using GIT hooks to modify release notes

We have a GIT repository with many contributors, and we constantly run into merge conflicts with the release notes file. Is there a good way to prevent them? I was thinking of a git post-upload ...
0
votes
1answer
137 views

Running a git post-commit hook

I'm running MAMP locally. I have a php script that I use to build a web site, to generate static HTML files, that I then push to a web server. This process acts a lot like Jekyll on github pages. ...
1
vote
2answers
91 views

Setting up post-receive hook for bare repo

I have a bare repo set up in my ubuntu server. After I push to my bare git repo to the server: $ git push origin master I want the contents of my non bare repo to be updated with the latest push ...

1 2 3 4 5 7