diff options
author | Gerd Hoffmann | 2017-07-17 12:16:32 +0200 |
---|---|---|
committer | Gerd Hoffmann | 2017-07-20 09:56:41 +0200 |
commit | 3b6bb28a6c5ce35e652902661a23d643f02531c8 (patch) | |
tree | d4edbd52ffec73de81b9fbe34407915b30f8f9eb /scripts/git.orderfile | |
parent | Merge remote-tracking branch 'remotes/berrange/tags/pull-qcrypto-2017-07-18-2... (diff) | |
download | qemu-3b6bb28a6c5ce35e652902661a23d643f02531c8.tar.gz qemu-3b6bb28a6c5ce35e652902661a23d643f02531c8.tar.xz qemu-3b6bb28a6c5ce35e652902661a23d643f02531c8.zip |
add scripts/git.orderfile
Based on a old patch by Laszlo.
Time to get this in ...
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Reviewed-by: Emilio G. Cota <cota@braap.org>
Message-id: 20170717101632.23247-1-kraxel@redhat.com
Diffstat (limited to 'scripts/git.orderfile')
-rw-r--r-- | scripts/git.orderfile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/scripts/git.orderfile b/scripts/git.orderfile new file mode 100644 index 0000000000..ac699700b1 --- /dev/null +++ b/scripts/git.orderfile @@ -0,0 +1,29 @@ +# +# 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/* +*.texi + +# build system +configure +Makefile* +*.mak + +# qapi schema +*.json + +# headers +*.h + +# code +*.c + |