• Home
  • Annotate
  • current directory
Name Date Size #Lines LOC

..12-Nov-2021-

README.md A D12-Nov-2021901 1711

pre-push.sh A D12-Nov-20211.4 KiB476

README.md

1README for git hooks script
2===========================
3git has a way to run scripts, which are invoked by specific git commands.
4The git hooks are located in `<mbed TLS root>/.git/hooks`, and as such are not under version control
5for more information, see the [git documentation](https://git-scm.com/docs/githooks).
6
7The mbed TLS git hooks are located in `<mbed TLS root>/tests/git-scripts` directory, and one must create a soft link from `<mbed TLS root>/.git/hooks` to `<mbed TLS root>/tesst/git-scripts`, in order to make the hook scripts successfully work.
8
9Example:
10
11Execute the following command to create a link on linux from the mbed TLS `.git/hooks` directory:
12`ln -s ../../tests/git-scripts/pre-push.sh pre-push`
13
14**Note: Currently the mbed TLS git hooks work only on a GNU platform. If using a non-GNU platform, don't enable these hooks!**
15
16These scripts can also be used independently.
17