ulthar-framework/.husky/pre-push

12 lines
217 B
Plaintext

# .husky/pre-push
branch="$(git rev-parse --abbrev-ref HEAD)"
while read local_ref local_sha remote_ref remote_sha
do
echo $local_ref
echo $local_sha
echo $remote_ref
echo $remote_sha
done
exit 1