commit 705c1c28c710b70406712027833ab739729ee583 parent f021ca2d52da262e14706498190de5fe7859e00b Author: rl1987 <rl1987@sdf.lonestar.org> Date: Fri, 5 Apr 2019 18:51:24 +0300 Call pre-commit hook from pre-push script Diffstat:
| M | scripts/git/pre-push.git-hook | | | 7 | +++++++ |
1 file changed, 7 insertions(+), 0 deletions(-)
diff --git a/scripts/git/pre-push.git-hook b/scripts/git/pre-push.git-hook @@ -27,6 +27,13 @@ ref_is_upstream_branch() { fi } +workdir=$(git rev-parse --show-toplevel) +if [ -x "$workdir/.git/hooks/pre-commit" ]; then + if ! "$workdir"/.git/hooks/pre-commit; then + exit 1 + fi +fi + # shellcheck disable=SC2034 while read -r local_ref local_sha remote_ref remote_sha do