diff options
| author | Dmitry Torokhov <[email protected]> | 2024-05-27 21:37:18 -0700 |
|---|---|---|
| committer | Dmitry Torokhov <[email protected]> | 2024-05-27 21:37:18 -0700 |
| commit | 6f47c7ae8c7afaf9ad291d39f0d3974f191a7946 (patch) | |
| tree | 74ce89b352cb8096e6a94ddc8597274d3e2d53ce /scripts/git.orderFile | |
| parent | 832f54c9ccd3a3f32d1db905462d3c58b4df52bd (diff) | |
| parent | a38297e3fb012ddfa7ce0321a7e5a8daeb1872b6 (diff) | |
Merge tag 'v6.9' into next
Sync up with the mainline to bring in the new cleanup API.
Diffstat (limited to 'scripts/git.orderFile')
| -rw-r--r-- | scripts/git.orderFile | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/scripts/git.orderFile b/scripts/git.orderFile new file mode 100644 index 000000000000..5102ba73357f --- /dev/null +++ b/scripts/git.orderFile @@ -0,0 +1,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 |