]> gitweb.ps.run Git - ps-cgit/commitdiff
Update git to v1.7.5.4
authorJohn Keeping <john@keeping.me.uk>
Sat, 2 Mar 2013 12:32:10 +0000 (12:32 +0000)
committerJason A. Donenfeld <Jason@zx2c4.com>
Sat, 2 Mar 2013 15:38:03 +0000 (10:38 -0500)
Some changes to diff options:

- no_merges has become the more general max_parents
- path restriction now uses struct pathspec

Signed-off-by: John Keeping <john@keeping.me.uk>
git
shared.c
ui-stats.c

diff --git a/git b/git
index 7ed863a85a6ce2c4ac4476848310b8f917ab41f9..e5af0de202e885b793482d416b8ce9d50dd2b8bc 160000 (submodule)
--- a/git
+++ b/git
@@ -1 +1 @@
-Subproject commit 7ed863a85a6ce2c4ac4476848310b8f917ab41f9
+Subproject commit e5af0de202e885b793482d416b8ce9d50dd2b8bc
index 8e5ae4811d13f104530e4980967b5dc0d79d3529..0967f922de18c8b132d40577b89ae16c0722546c 100644 (file)
--- a/shared.c
+++ b/shared.c
@@ -307,7 +307,7 @@ void cgit_diff_tree(const unsigned char *old_sha1,
                    filepair_fn fn, const char *prefix, int ignorews)
 {
        struct diff_options opt;
-       int prefixlen;
+       struct pathspec_item item;
 
        diff_setup(&opt);
        opt.output_format = DIFF_FORMAT_CALLBACK;
@@ -319,10 +319,10 @@ void cgit_diff_tree(const unsigned char *old_sha1,
        opt.format_callback = cgit_diff_tree_cb;
        opt.format_callback_data = fn;
        if (prefix) {
-               opt.nr_paths = 1;
-               opt.paths = &prefix;
-               prefixlen = strlen(prefix);
-               opt.pathlens = &prefixlen;
+               item.match = prefix;
+               item.len = strlen(prefix);
+               opt.pathspec.nr = 1;
+               opt.pathspec.items = &item;
        }
        diff_setup_done(&opt);
 
index 59f4c1e7cd31d7f758b78c3a4d35f3801041e680..51dd6a2e0d115039a93b57c7e997fcd2c3bac3dd 100644 (file)
@@ -239,7 +239,7 @@ struct string_list collect_stats(struct cgit_context *ctx,
        init_revisions(&rev, NULL);
        rev.abbrev = DEFAULT_ABBREV;
        rev.commit_format = CMIT_FMT_DEFAULT;
-       rev.no_merges = 1;
+       rev.max_parents = 1;
        rev.verbose_header = 1;
        rev.show_root_diff = 0;
        setup_revisions(argc, argv, &rev, NULL);