blob: b32203b7106aed9f8fc4b8a8e9cc61037bd05c92 (
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
|
#
# order file for git, to produce patches which are easier to review
# by diffing the important stuff like interface changes first.
#
# one-off usage:
# git diff -O scripts/git.orderfile ...
#
# add to git config:
# git config diff.orderFile scripts/git.orderfile
#
# Documentation
docs/*
*.rst
*.rst.inc
# build system
configure
Makefile*
*.mak
meson.build
# qapi schema
qapi/*.json
qga/*.json
# semantic patches
*.cocci
# headers
*.h
*.h.inc
# decoding tree specification
*.decode
# code
*.c
*.c.inc
|