git.orderfile 483 B

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