mirror of
https://github.com/RPCS3/rpcs3
synced 2024-11-02 11:45:30 +00:00
11 lines
292 B
Text
11 lines
292 B
Text
|
#!/bin/bash
|
||
|
|
||
|
# git pre-commit hook that run git-clang-format when committing.
|
||
|
# To use it install clang-format and python 2.7 then copy this
|
||
|
# file to .git/hooks/ and remove the extension
|
||
|
|
||
|
git clang-format --style=file --diff > style.patch
|
||
|
git apply --index style.patch
|
||
|
rm style.patch
|
||
|
exit 0
|