Tagged Questions

9
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 ...
6
votes
2answers
325 views

git: Can I stash an untracked file without adding it to the index?

A related question How do you stash an untracked file? was answered with "track the file." This doesn't work for my particular needs, however. I'm trying to stash everything that isn't in the index ...
6
votes
3answers
3k views

Git pre-commit hook : changed/added files

I am writing a pre-commit hook. I want to run php -l against all files with .php extension. However I am stuck. I need to obtain a list of new/changed files that are staged. deleted files should be ...
5
votes
1answer
630 views

Pre-commit hook for Git when Hudson build has failed

I'm trying to figure out how to write a pre-commit hook for Git that checks the status of my Hudson build. If the previous build failed, it should disallow anyone from committing without first writing ...
5
votes
3answers
521 views

How to make a pre-commit hook that prevents non-UTF-8 file encodings

Is it possible to make a precommit hook for git or svn that can reject files not committed in a specific encoding? I have worked on several project where it seems to be a problem to stick to a ...
4
votes
5answers
1k views

Pre Commit Hook for JSLint in Mercurial and Git

I want to run JSLint before a commit into either a Mercurial or Git repo is done. I want this as an automatic step that is set up instead of relying on the developer (mainly me) remembering to run ...
2
votes
1answer
155 views

Why doesn't my Git pre-commit hook trigger in a cloned repository?

I just wrote small pre-commit hook to perform my custom action. My central repository is on a Solaris server and HTTP enabled. /apps/opt/git/myrepo.git I edited pre-commit hook and modified as ...
1
vote
1answer
101 views

Use hook to force specific format of git commit message

I want to use a git hook to force commit messages to comply with a specific format (they should end with #number). I've tried installing this hook, also referenced here, but I keep getting the ...
1
vote
1answer
48 views

git tracking one file changes

We have a large repo and a lots of commiters. I want to track history of a single file. Whenever someone changes it (push changes to my central repository), I get the email with diff and author name. ...
1
vote
1answer
60 views

How can I propogate my git configuration/hooks?

I recently decided that I wanted all people who commit to my repository to fill in a simple commit log. Basically I want them to fill in a form to the commit message. A quick search found me: How ...
1
vote
0answers
338 views

How to propagate GIT Hook while clone

Team, I written pre-commit hook on my central repository. When my client clone the repository it never propagate the hooks. so i need to do something that hooks should also be copied to my client ...
1
vote
3answers
210 views

git precommit hook to ensure HEAD is up to date from master repo

I am moving my team over from an old CVS repository to using git. I was hoping to add in a precommit hook to ensure before a commit is done locally (and pushed) each person has an up to date repo. ...
1
vote
2answers
506 views

How does this pre-commit hook fix trailing whitespace?

What is going on in this pre-commit hook? I thought changing files would cause them to be restaged. #!/bin/sh # # A git hook script to find and fix trailing whitespace # in your commits. Bypass it ...
0
votes
1answer
8 views

Git hook for pre-commit being invoked but hardlinks failing

Please look at my answer here: Git and hard links I tried to put the same script in pre-commit, but somehow the hard links are not being created. The script is indeed executed (i.e. an echo inside ...
0
votes
1answer
161 views

git pre-commit hook, add file into index

I'm trying to write a simple pre-commit hook to check if a file was modified, if so, compress it and add it into the current index, something like this #!/bin/sh ...