this is testing

Committer:
pmallick
Date:
Thu Jan 14 19:12:57 2021 +0530
Revision:
0:e8a1ba50c46b
this is testing

Who changed what in which revision?

UserRevisionLine numberNew contents of line
pmallick 0:e8a1ba50c46b 1 #!/bin/sh
pmallick 0:e8a1ba50c46b 2 #
pmallick 0:e8a1ba50c46b 3 # An example hook script to verify what is about to be committed.
pmallick 0:e8a1ba50c46b 4 # Called by "git merge" with no arguments. The hook should
pmallick 0:e8a1ba50c46b 5 # exit with non-zero status after issuing an appropriate message to
pmallick 0:e8a1ba50c46b 6 # stderr if it wants to stop the merge commit.
pmallick 0:e8a1ba50c46b 7 #
pmallick 0:e8a1ba50c46b 8 # To enable this hook, rename this file to "pre-merge-commit".
pmallick 0:e8a1ba50c46b 9
pmallick 0:e8a1ba50c46b 10 . git-sh-setup
pmallick 0:e8a1ba50c46b 11 test -x "$GIT_DIR/hooks/pre-commit" &&
pmallick 0:e8a1ba50c46b 12 exec "$GIT_DIR/hooks/pre-commit"
pmallick 0:e8a1ba50c46b 13 :