summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xutils/hooks/post-commit2
-rwxr-xr-xutils/hooks/pre-commit2
-rwxr-xr-xutils/hooks/pre-push2
3 files changed, 6 insertions, 0 deletions
diff --git a/utils/hooks/post-commit b/utils/hooks/post-commit
index c8b1739a..f28cbd8d 100755
--- a/utils/hooks/post-commit
+++ b/utils/hooks/post-commit
@@ -1,5 +1,7 @@
#!/bin/sh
+# SPDX-License-Identifier: GPL-2.0-or-later
+
# Execute the checkstyle script after committing any code. This allows the
# commit to succeed, but ensures that the developer is aware of any potential
# issues immediately, and can resolve them and fix rapidly with:
diff --git a/utils/hooks/pre-commit b/utils/hooks/pre-commit
index 47fcbc81..7a4cb625 100755
--- a/utils/hooks/pre-commit
+++ b/utils/hooks/pre-commit
@@ -1,5 +1,7 @@
#!/bin/sh
+# SPDX-License-Identifier: GPL-2.0-or-later
+
# Execute the checkstyle script before committing any code. This will fail the
# commit in case of style issues, ensuring that the developer will notice them.
# The pre-commit hook can be bypassed with git commit -n to ignore selective
diff --git a/utils/hooks/pre-push b/utils/hooks/pre-push
index 099441b8..34906dde 100755
--- a/utils/hooks/pre-push
+++ b/utils/hooks/pre-push
@@ -1,5 +1,7 @@
#!/bin/sh
+# SPDX-License-Identifier: GPL-2.0-or-later
+
# A hook script to prevent pushing unsuitable commits to the master branch.
# Unsuitable commits are commits that contain a local changelog below a '---'
# line. The criteria may get extended later.