aboutsummaryrefslogtreecommitdiff
path: root/scripts/git.orderFile
diff options
context:
space:
mode:
authorDmitry Torokhov <[email protected]>2024-05-27 21:37:18 -0700
committerDmitry Torokhov <[email protected]>2024-05-27 21:37:18 -0700
commit6f47c7ae8c7afaf9ad291d39f0d3974f191a7946 (patch)
tree74ce89b352cb8096e6a94ddc8597274d3e2d53ce /scripts/git.orderFile
parent832f54c9ccd3a3f32d1db905462d3c58b4df52bd (diff)
parenta38297e3fb012ddfa7ce0321a7e5a8daeb1872b6 (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.orderFile42
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