Tagged Questions
0
votes
1answer
55 views
Pre-commit hook file staging for commit
If you have a pre-commit hook in Git that creates (or modifies) a file, does that file need to be staged for it to be committed?
For example, if I have a pre-commit hook that creates a minified ...
4
votes
1answer
106 views
What scripts/calls do you usually include in your Git pre-commit hooks?
I want to know what are the best practices in setting up your pre-commit hooks. What the other developers using Git include in their pre-commit scripts.
In my case, assuming I'm working on a PHP ...
1
vote
2answers
229 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: ...
0
votes
0answers
31 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 ...
0
votes
1answer
287 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 ...
1
vote
1answer
105 views
Check if commit is first commit in pre-commit hook
Currently I'm using the pre-commit hook to disallow committing to the master branch (forces me to work on other branches and merge in changes). This doesn't allow me to do an initial commit on a ...
0
votes
1answer
1k 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 ...
2
votes
1answer
180 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 ...
15
votes
8answers
3k 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 ...