2
0

git.orderfile 527 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  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. MAINTAINERS
  12. # Documentation
  13. docs/*
  14. *.rst
  15. *.rst.inc
  16. # build system
  17. configure
  18. Makefile*
  19. *.mak
  20. meson.build
  21. # qapi schema
  22. qapi/*.json
  23. qga/*.json
  24. # semantic patches
  25. *.cocci
  26. # headers
  27. *.h
  28. *.h.inc
  29. # decoding tree specification
  30. *.decode
  31. # code
  32. *.c
  33. *.c.inc