summaryrefslogtreecommitdiffstats
path: root/git-hooks/clang-format-pre-commit
blob: 051c6dd51007e24b770ad31bb9ad37375228c433 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#! /bin/sh
# Copyright (C) 2018 The Qt Company Ltd.
# Contact: http://www.qt.io/licensing/
#
# You may use this file under the terms of the 3-clause BSD license.
# See the file LICENSE from this package for details.
#

# Usage: in every repository you want to have checked:
#    cd .git/hooks
#    ln -s /path/to/git_pre_commit_hook pre-commit
#

CLANG_FORMAT=`which git-clang-format`
if test -n "$CLANG_FORMAT"
    echo "Please install clang-format and make sure git-clang-format is in the path."
    exit 0
fi

CLANG_FORMAT_DIFF=`git clang-format -q --diff`
if test -n "$CLANG_FORMAT_DIFF"; then
    echo "clang-format output:"
    echo "$CLANG_FORMAT_DIFF"
    echo "clang-format detected change in format, please run:"
    echo "  git clang-format"
    echo "and amend the change."
    exit 1
fi