diff options
Diffstat (limited to 'scripts/git-hooks')
-rwxr-xr-x | scripts/git-hooks/post-checkout | 3 | ||||
-rwxr-xr-x | scripts/git-hooks/post-merge | 3 | ||||
-rwxr-xr-x | scripts/git-hooks/pre-commit | 23 | ||||
-rwxr-xr-x | scripts/git-hooks/pre-push | 23 |
4 files changed, 52 insertions, 0 deletions
diff --git a/scripts/git-hooks/post-checkout b/scripts/git-hooks/post-checkout new file mode 100755 index 0000000..4dd578c --- /dev/null +++ b/scripts/git-hooks/post-checkout @@ -0,0 +1,3 @@ +#!/bin/bash + +./setup.sh --update diff --git a/scripts/git-hooks/post-merge b/scripts/git-hooks/post-merge new file mode 100755 index 0000000..4dd578c --- /dev/null +++ b/scripts/git-hooks/post-merge @@ -0,0 +1,3 @@ +#!/bin/bash + +./setup.sh --update diff --git a/scripts/git-hooks/pre-commit b/scripts/git-hooks/pre-commit new file mode 100755 index 0000000..ee010cb --- /dev/null +++ b/scripts/git-hooks/pre-commit @@ -0,0 +1,23 @@ +#!/bin/bash + +currentBranch=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p') + +if [ "$currentBranch" == "master" ]; then + gitlabOccurances=$(grep -c -m1 gitlab .gitmodules) + + if [ $gitlabOccurances -eq 1 ]; then + echo " +************************************************************************* +COMMIT INVALID: .gitmodules has a reference to GitLab + +You can't commit anything to the master branch that pulls +from GitLab because outsiders won't be able to build it. + +If you need to use a submodule from GitLab, do so from a branch. +*************************************************************************" + exit 1 + fi +fi + +exit 0 # Everything is good + diff --git a/scripts/git-hooks/pre-push b/scripts/git-hooks/pre-push new file mode 100755 index 0000000..9cacb8f --- /dev/null +++ b/scripts/git-hooks/pre-push @@ -0,0 +1,23 @@ +#!/bin/bash + +currentBranch=$(git branch | sed -n -e 's/^\* \(.*\)/\1/p') + +if [ "$currentBranch" == "master" ]; then + gitlabOccurances=$(grep -c -m1 gitlab .gitmodules) + + if [ $gitlabOccurances -eq 1 ]; then + echo " +************************************************************************* +PUSH ERROR: .gitmodules has a reference to GitLab + +You can't push anything to the master branch that pulls +from GitLab because outsiders won't be able to build it. + +If you need to use a submodule from GitLab, do so from a branch. +*************************************************************************" + exit 1 + fi +fi + +exit 0 # Everything is good + |