Improve pre-push.git-hook description

This commit is contained in:
rl1987 2019-02-20 19:56:37 +02:00 committed by David Goulet
parent f3eac74ed9
commit 0deea98d02

View File

@ -1,8 +1,9 @@
#!/bin/bash
# git pre-push hook script to prevent "fixup!" and "squash!" commit
# from ending up in master, or in any branch if CUR_BRANCH check is removed.
# Furthermore, it disallows pushing branches other than master, release-*
# git pre-push hook script to:
# 1) prevent "fixup!" and "squash!" commit from ending up in master, release-*
# or maint-*
# 2) Disallow pushing branches other than master, release-*
# and maint-* to origin (e.g. gitweb.torproject.org).
#
# To install this script, copy it into .git/hooks/pre-push path in your