]>
Commit | Line | Data |
---|---|---|
3b6bb28a GH |
1 | # |
2 | # order file for git, to produce patches which are easier to review | |
3 | # by diffing the important stuff like interface changes first. | |
4 | # | |
5 | # one-off usage: | |
6 | # git diff -O scripts/git.orderfile ... | |
7 | # | |
8 | # add to git config: | |
9 | # git config diff.orderFile scripts/git.orderfile | |
10 | # | |
11 | ||
12 | # Documentation | |
13 | docs/* | |
bab694fa | 14 | *.rst |
a1bcbb48 | 15 | *.rst.inc |
3b6bb28a GH |
16 | |
17 | # build system | |
18 | configure | |
19 | Makefile* | |
20 | *.mak | |
8edacae0 | 21 | meson.build |
3b6bb28a GH |
22 | |
23 | # qapi schema | |
b1862ee6 MA |
24 | qapi/*.json |
25 | qga/*.json | |
3b6bb28a | 26 | |
4b314c1a PMD |
27 | # semantic patches |
28 | *.cocci | |
29 | ||
3b6bb28a GH |
30 | # headers |
31 | *.h | |
a1bcbb48 | 32 | *.h.inc |
3b6bb28a | 33 | |
75fa376c PMD |
34 | # decoding tree specification |
35 | *.decode | |
36 | ||
3b6bb28a GH |
37 | # code |
38 | *.c | |
a1bcbb48 | 39 | *.c.inc |