Tagged Questions
The githooks tag has no wiki summary.
16
votes
2answers
3k 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 ...
12
votes
2answers
1k 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 ...
10
votes
4answers
833 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
8answers
2k views
List of useful git tools
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, ...
9
votes
2answers
3k 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 ...
8
votes
2answers
707 views
Git receive/update hooks and new branches
I have a problem with the 'update' hook. In the case of a new branch, it gets a 0000000000000000000000000000000000000000 as the 'oldrev'. And I don't know how to handle that case.
We have the ...
8
votes
5answers
1k 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 ...
7
votes
3answers
4k 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 ...
6
votes
1answer
230 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. ...
6
votes
3answers
259 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
6
votes
2answers
495 views
block push of trivial merge to git server
A while back I asked our developers to use rebase instead of merge before pushing. Eliminating trivial merges makes for a much easier to follow commit graph (ie: gitk, git log).
Sometimes folks still ...
6
votes
3answers
1k 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?
5
votes
1answer
79 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 ...
5
votes
2answers
189 views
Running PowerShell scripts as git hooks
Is it possible to run PowerShell scripts as git hooks?
I am running git in a PowerShell prompt, which shouldn't make any difference, but I can't seem to get them to work, as the hooks are named ...
5
votes
1answer
198 views
Cross platform git hooks
How do you manage git pre/post commit hooks across various platforms (say, *nix and windows)?
Any best practices recommended for this scenario?
5
votes
1answer
230 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.
5
votes
1answer
511 views
Git global hook customization
I am planning to write a few git hooks as a project which logs the user's actions in a database. This database can then be used for querying for all his activities. The actions I am trying to log are
...
5
votes
1answer
673 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 ...
5
votes
2answers
293 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 ...
4
votes
1answer
74 views
In Git, how do I configure a hook to run a server-side commands after a commit is accepted?
I'm trying to figure out my way with the Django localistion stuff and from what i've understood, the makemessages command needs to be run every time you change some strings in code. I was thinking of ...
4
votes
2answers
259 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 ...
4
votes
2answers
361 views
How to set up a Git hook so that after pushing to ssh://peter@foo.com/~/bar.com.git, it will go to ~/bar.com and do a git pull?
I was advised to set up on a remote server
foo.com/~/bar.com # live webpage content
foo.com/~/bar.com.git # a bare repo
so, from my local machine, I can do a
git push
and it will push ...
4
votes
3answers
356 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 ...
4
votes
1answer
284 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 ...
4
votes
2answers
218 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 ...
4
votes
1answer
1k views
git post-commit hook - script on commited files
Can I see somewhere an example post-commit hook to run a script on each commited file?
eg.
git add file1
git add file2
git commit -am "my commit"
and the hook executes:
myscript -myparams ...
4
votes
2answers
1k views
Writing Git hooks in python/bash scripts
I have recently needed to write git hooks, for all commits to reference a particular ticket.
I was hoping for a place to start learning. All the stuff in the pro git book is written in Ruby. Since ...
4
votes
2answers
156 views
git: repo monitoring tool
Do you know any good repo monitoring solution?
I'd like to get information when someone pushes to remote repo (preferably via taskbar tray icon: "someuser pushed…").
Other solutions I consider:
...
4
votes
5answers
2k 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 ...
3
votes
2answers
133 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
1answer
297 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 ...
3
votes
1answer
694 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 ...
3
votes
4answers
328 views
Fix permissions with git post-merge
On one server I work on, we must log in as root (for reasons I won't get into here). We have a git repository set up which is used for the web server, but since files are created as root, files ...
3
votes
1answer
237 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 ...
3
votes
1answer
434 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 ...
3
votes
3answers
198 views
Validate if commit exists
How to validate whether the commit with given sha exists in current branch?
There are many ways to parse outputs, but I need optimal way which returns boolean (for usage in bash script).
e.g.
...
3
votes
3answers
1k 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 ...
3
votes
2answers
972 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 ...
3
votes
3answers
710 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
...
3
votes
3answers
293 views
git: who pushed in post-receive hook
How do I determine who pushed to the repository?
I.e. Somebody does git push origin master and in the post-receive hook on the origin repo I need to use the name or e-mail of Somebody.
3
votes
1answer
901 views
Manage http access to git repositories using gitosis
[Update 9/16/2010]
After looking into this last night, I realized that my original question was really asking 2 separate things:
1) Is it possible to set the post-update hook for all remote ...
3
votes
2answers
865 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 ...
3
votes
3answers
181 views
Git hook to disallow directory creation in top level
Any better way to prevent stop top level directory creation by users may be while on push or direct file creation
Thanks in Advance
Dhandu
3
votes
3answers
193 views
is there a hack for fully functional cross-platform shebang line?
Problem: apparently the scripts in the .git/hooks directory depend on the filename matching one of:
post-commit
pre-commit
pre-rebase
etc ...
No concept of "file extension" is required because the ...
3
votes
3answers
2k 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 ...
2
votes
1answer
23 views
switch a branch in a remote git repository
when i deploy production code i simply do "git push production" - i have a post-receive hook that does this:
"git checkout -f" - that will update our production code with the latest push.
In this ...
2
votes
1answer
55 views
Git : fatal: exec hooks/post-receive failed
I have a remote created with git --bare init.
When I push I get:
Delta compression using up to 2 threads.
Compressing objects: 100% (3/3), done.
Writing objects: 100% (4/4), 368 bytes, done.
...
2
votes
1answer
56 views
Copy unversioned file after git push
I have a local repository where I work daily and a remote bare repository where I push my result. I would like after every push to copy some local files that are not under version control (like .exe ...
2
votes
1answer
61 views
Problem with git hook for updating site
I have set up a website on a server and use git to maintain it. For this reason I have created two git repositories, a bare one at $HOME/site to which I push and a non-bare one at /var/www which is ...
2
votes
2answers
102 views
Can a git hook be used to replace passwords before staging, adding, or pushing?
Can a git hook be used to replace passwords before staging, adding, or pushing?
I want passwords to be replaced by templates before committing or pushing.
for instance, say I prefix plain texts ...