-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpre-commit
executable file
·33 lines (26 loc) · 1.08 KB
/
pre-commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
# This script is a wrapper around the run-tests script.
# It is highly recommended to link it as the git pre-commit hook via:
# ln -s ../../pre-commit .git/hooks/pre-commit
# The difference to the run-tests script is that this script stashes
# unstaged changes before testing (see below). Thus only the changeset to be
# commited will be tested. No worries, "git commit -a" will still work ;)
# Stephan Kuschel, 2014
# Stash unstaged changes if and only if(!) necessary (=possible):
# if you dont check that you might uninentionally apply an older stash,
# because this if statement just makes sure, that there are changed to
# be stashed on executing "git staph -q --keep-index". Otherwise it coud
# happen, that git stash is executed, but no stash is created, because
# there were no changes, that could be stashed.
if git diff-index --quiet HEAD --; then
#echo "pre-commit hook without stashing"
./run-tests
exitcode=$?
else
#echo "pre-commit hook with stashing"
git stash -q --keep-index
./run-tests
exitcode=$?
git stash pop -q
fi
exit $exitcode