2016-12-15 13:42:37 +01:00
README for git hooks script
===========================
git has a way to run scripts, which are invoked by specific git commands.
2022-07-29 14:44:01 +02:00
The git hooks are located in `<Mbed TLS root>/.git/hooks` , and as such are not under version control
2016-12-15 13:42:37 +01:00
for more information, see the [git documentation ](https://git-scm.com/docs/githooks ).
2022-07-29 14:44:01 +02:00
The 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>/tests/git-scripts` , in order to make the hook scripts successfully work.
2016-12-15 13:42:37 +01:00
Example:
2022-07-29 14:44:01 +02:00
Execute the following command to create a link on Linux from the Mbed TLS `.git/hooks` directory:
2017-07-24 14:52:18 +02:00
`ln -s ../../tests/git-scripts/pre-push.sh pre-push`
2016-12-15 13:42:37 +01:00
2022-07-29 14:44:01 +02:00
**Note: Currently the Mbed TLS git hooks work only on a GNU platform. If using a non-GNU platform, don't enable these hooks!**
2017-07-23 14:25:32 +02:00
These scripts can also be used independently.