| 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 | MAINTAINERS |
| 13 | |
| 14 | # Documentation |
| 15 | docs/* |
| 16 | *.rst |
| 17 | *.rst.inc |
| 18 | |
| 19 | # build system |
| 20 | configure |
| 21 | Makefile* |
| 22 | *.mak |
| 23 | meson.build |
| 24 | |
| 25 | # qapi schema |
| 26 | qapi/*.json |
| 27 | qga/*.json |
| 28 | |
| 29 | # semantic patches |
| 30 | *.cocci |
| 31 | |
| 32 | # headers |
| 33 | *.h |
| 34 | *.h.inc |
| 35 | |
| 36 | # decoding tree specification |
| 37 | *.decode |
| 38 | |
| 39 | # code |
| 40 | *.c |
| 41 | *.c.inc |
| 42 | |
| 43 | # Generated Dockerfiles |
| 44 | tests/lcitool/refresh |
| 45 | tests/docker/dockerfiles/* |