Test pour écran OLED 128 x 64 SSD1306 avec sonde thermique DS18B20

Committer:
diltech
Date:
Sat May 28 13:22:32 2022 +0000
Revision:
0:8ae2868c8c6c
Projet initial

Who changed what in which revision?

UserRevisionLine numberNew contents of line
diltech 0:8ae2868c8c6c 1 #!/bin/sh
diltech 0:8ae2868c8c6c 2 #
diltech 0:8ae2868c8c6c 3 # An example hook script to verify what is about to be committed
diltech 0:8ae2868c8c6c 4 # by applypatch from an e-mail message.
diltech 0:8ae2868c8c6c 5 #
diltech 0:8ae2868c8c6c 6 # The hook should exit with non-zero status after issuing an
diltech 0:8ae2868c8c6c 7 # appropriate message if it wants to stop the commit.
diltech 0:8ae2868c8c6c 8 #
diltech 0:8ae2868c8c6c 9 # To enable this hook, rename this file to "pre-applypatch".
diltech 0:8ae2868c8c6c 10
diltech 0:8ae2868c8c6c 11 . git-sh-setup
diltech 0:8ae2868c8c6c 12 precommit="$(git rev-parse --git-path hooks/pre-commit)"
diltech 0:8ae2868c8c6c 13 test -x "$precommit" && exec "$precommit" ${1+"$@"}
diltech 0:8ae2868c8c6c 14 :