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 check the commit log message taken by
diltech 0:8ae2868c8c6c 4 # 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. The hook is
diltech 0:8ae2868c8c6c 8 # allowed to edit the commit message file.
diltech 0:8ae2868c8c6c 9 #
diltech 0:8ae2868c8c6c 10 # To enable this hook, rename this file to "applypatch-msg".
diltech 0:8ae2868c8c6c 11
diltech 0:8ae2868c8c6c 12 . git-sh-setup
diltech 0:8ae2868c8c6c 13 commitmsg="$(git rev-parse --git-path hooks/commit-msg)"
diltech 0:8ae2868c8c6c 14 test -x "$commitmsg" && exec "$commitmsg" ${1+"$@"}
diltech 0:8ae2868c8c6c 15 :