summaryrefslogtreecommitdiffstats
path: root/scripts/git.orderFile
blob: 5102ba73357f0029b6623034fc97b6cc550461b7 (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
30
31
32
33
34
35
36
37
38
39
40
41
42
# SPDX-License-Identifier: GPL-2.0

# order file for git, to produce patches which are easier to review
# by diffing the important stuff like header changes first.
#
# one-off usage:
#   git diff -O scripts/git.orderFile ...
#
# add to git config:
#   git config diff.orderFile scripts/git.orderFile
#

MAINTAINERS

# Documentation
Documentation/*
*.rst

# git-specific
.gitignore
scripts/git.orderFile

# build system
Kconfig*
*/Kconfig*
Kbuild*
*/Kbuild*
Makefile*
*/Makefile*
*.mak
*.mk
scripts/*

# semantic patches
*.cocci

# headers
*types.h
*.h

# code
*.c