diff options
author | yexin <yexin13@huawei.com> | 2018-07-30 21:34:10 +0800 |
---|---|---|
committer | yexin <yexin13@huawei.com> | 2018-08-01 12:56:08 +0800 |
commit | 8944a337eaaf3717b11e0e877c38bfec00d3b6bd (patch) | |
tree | a97be1ff54b23e6b0d3be34835bc45648deb4ad1 /scripts/git/pre-commit | |
parent | 51884d17a7e9a5a6f15ac95707303a8479c1013f (diff) |
Fix: commit-msg hook conflicts with git-review
Fix bug that the original commit-msg hook will conflict with
the one from git-review.
Also add an option (RMWS) to CMakelists to enable autoremove
trailing whitespace when commit changes.
Change-Id: I78a34758d1cf2501814e60b403a25df40de833f9
Signed-off-by: yexin <yexin13@huawei.com>
Diffstat (limited to 'scripts/git/pre-commit')
-rwxr-xr-x | scripts/git/pre-commit | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/git/pre-commit b/scripts/git/pre-commit new file mode 100755 index 0000000..58cd14f --- /dev/null +++ b/scripts/git/pre-commit @@ -0,0 +1,14 @@ +#!/bin/bash + +if git rev-parse --verify HEAD >/dev/null 2>&1 +then + against=HEAD +else + # Initial commit: diff against an empty tree object + against=4b825dc642cb6eb9a060e54bf8d69288fbee4904 +fi + +# autoremove trailing whitespace +for file in `git diff-index --check --cached $against -- | sed '/^[-+]/d' | sed -r 's/:[0-9]+:.*//' | uniq` ; do + sed -i 's/[ \t]*$//g' $file +done |