rugged 0.24.6.1 → 0.25.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -1
- data/ext/rugged/extconf.rb +9 -2
- data/ext/rugged/rugged.c +85 -21
- data/ext/rugged/rugged.h +7 -21
- data/ext/rugged/rugged_backend.c +3 -20
- data/ext/rugged/rugged_blame.c +7 -24
- data/ext/rugged/rugged_blob.c +136 -59
- data/ext/rugged/rugged_branch.c +3 -20
- data/ext/rugged/rugged_branch_collection.c +3 -20
- data/ext/rugged/rugged_commit.c +251 -101
- data/ext/rugged/rugged_config.c +3 -20
- data/ext/rugged/rugged_cred.c +3 -20
- data/ext/rugged/rugged_diff.c +3 -20
- data/ext/rugged/rugged_diff_delta.c +3 -20
- data/ext/rugged/rugged_diff_hunk.c +3 -20
- data/ext/rugged/rugged_diff_line.c +3 -20
- data/ext/rugged/rugged_index.c +46 -229
- data/ext/rugged/rugged_note.c +3 -20
- data/ext/rugged/rugged_object.c +3 -20
- data/ext/rugged/rugged_patch.c +192 -34
- data/ext/rugged/rugged_rebase.c +90 -48
- data/ext/rugged/rugged_reference.c +4 -21
- data/ext/rugged/rugged_reference_collection.c +3 -20
- data/ext/rugged/rugged_remote.c +70 -42
- data/ext/rugged/rugged_remote_collection.c +3 -20
- data/ext/rugged/rugged_repo.c +50 -59
- data/ext/rugged/rugged_revwalk.c +4 -21
- data/ext/rugged/rugged_settings.c +3 -20
- data/ext/rugged/rugged_signature.c +3 -20
- data/ext/rugged/rugged_submodule.c +4 -21
- data/ext/rugged/rugged_submodule_collection.c +3 -20
- data/ext/rugged/rugged_tag.c +3 -20
- data/ext/rugged/rugged_tag_collection.c +3 -20
- data/ext/rugged/rugged_tree.c +189 -184
- data/lib/rugged/attributes.rb +5 -0
- data/lib/rugged/blob.rb +5 -0
- data/lib/rugged/branch.rb +6 -1
- data/lib/rugged/commit.rb +5 -0
- data/lib/rugged/console.rb +5 -0
- data/lib/rugged/credentials.rb +5 -0
- data/lib/rugged/diff/delta.rb +5 -0
- data/lib/rugged/diff/hunk.rb +5 -0
- data/lib/rugged/diff/line.rb +5 -0
- data/lib/rugged/diff.rb +5 -0
- data/lib/rugged/index.rb +120 -0
- data/lib/rugged/object.rb +5 -0
- data/lib/rugged/patch.rb +5 -0
- data/lib/rugged/reference.rb +5 -0
- data/lib/rugged/remote.rb +5 -0
- data/lib/rugged/repository.rb +9 -4
- data/lib/rugged/submodule_collection.rb +5 -0
- data/lib/rugged/tag.rb +5 -0
- data/lib/rugged/tree.rb +156 -1
- data/lib/rugged/version.rb +6 -1
- data/lib/rugged/walker.rb +5 -0
- data/lib/rugged.rb +5 -0
- data/vendor/libgit2/CMakeLists.txt +12 -2
- data/vendor/libgit2/include/git2/blob.h +39 -28
- data/vendor/libgit2/include/git2/commit.h +76 -0
- data/vendor/libgit2/include/git2/common.h +21 -1
- data/vendor/libgit2/include/git2/describe.h +5 -2
- data/vendor/libgit2/include/git2/diff.h +62 -7
- data/vendor/libgit2/include/git2/errors.h +2 -1
- data/vendor/libgit2/include/git2/index.h +25 -0
- data/vendor/libgit2/include/git2/merge.h +10 -1
- data/vendor/libgit2/include/git2/odb.h +47 -1
- data/vendor/libgit2/include/git2/pack.h +4 -4
- data/vendor/libgit2/include/git2/patch.h +1 -1
- data/vendor/libgit2/include/git2/proxy.h +92 -0
- data/vendor/libgit2/include/git2/refs.h +11 -0
- data/vendor/libgit2/include/git2/remote.h +21 -8
- data/vendor/libgit2/include/git2/repository.h +20 -1
- data/vendor/libgit2/include/git2/revwalk.h +4 -6
- data/vendor/libgit2/include/git2/signature.h +13 -0
- data/vendor/libgit2/include/git2/submodule.h +11 -3
- data/vendor/libgit2/include/git2/sys/merge.h +177 -0
- data/vendor/libgit2/include/git2/sys/odb_backend.h +11 -0
- data/vendor/libgit2/include/git2/sys/remote.h +16 -0
- data/vendor/libgit2/include/git2/sys/stream.h +2 -1
- data/vendor/libgit2/include/git2/sys/time.h +31 -0
- data/vendor/libgit2/include/git2/sys/transport.h +3 -1
- data/vendor/libgit2/include/git2/tag.h +9 -0
- data/vendor/libgit2/include/git2/transaction.h +9 -0
- data/vendor/libgit2/include/git2/tree.h +55 -0
- data/vendor/libgit2/include/git2/version.h +4 -4
- data/vendor/libgit2/include/git2.h +1 -0
- data/vendor/libgit2/src/annotated_commit.c +99 -80
- data/vendor/libgit2/src/annotated_commit.h +5 -2
- data/vendor/libgit2/src/apply.c +377 -0
- data/vendor/libgit2/src/apply.h +21 -0
- data/vendor/libgit2/src/array.h +0 -1
- data/vendor/libgit2/src/blob.c +71 -39
- data/vendor/libgit2/src/branch.c +7 -5
- data/vendor/libgit2/src/buffer.c +252 -20
- data/vendor/libgit2/src/buffer.h +8 -0
- data/vendor/libgit2/src/checkout.c +69 -42
- data/vendor/libgit2/src/clone.c +0 -8
- data/vendor/libgit2/src/commit.c +193 -49
- data/vendor/libgit2/src/commit_list.c +8 -3
- data/vendor/libgit2/src/commit_list.h +1 -0
- data/vendor/libgit2/src/common.h +2 -1
- data/vendor/libgit2/src/config.c +3 -3
- data/vendor/libgit2/src/config_file.c +20 -10
- data/vendor/libgit2/src/crlf.c +1 -0
- data/vendor/libgit2/src/curl_stream.c +106 -6
- data/vendor/libgit2/src/delta.c +238 -62
- data/vendor/libgit2/src/delta.h +79 -58
- data/vendor/libgit2/src/describe.c +1 -1
- data/vendor/libgit2/src/diff.c +32 -1554
- data/vendor/libgit2/src/diff.h +14 -122
- data/vendor/libgit2/src/diff_driver.c +4 -6
- data/vendor/libgit2/src/diff_file.c +3 -0
- data/vendor/libgit2/src/diff_generate.c +1613 -0
- data/vendor/libgit2/src/diff_generate.h +123 -0
- data/vendor/libgit2/src/diff_parse.c +101 -0
- data/vendor/libgit2/src/diff_parse.h +18 -0
- data/vendor/libgit2/src/diff_print.c +263 -144
- data/vendor/libgit2/src/diff_stats.c +21 -12
- data/vendor/libgit2/src/diff_tform.c +1 -0
- data/vendor/libgit2/src/diff_tform.h +22 -0
- data/vendor/libgit2/src/diff_xdiff.c +9 -9
- data/vendor/libgit2/src/diff_xdiff.h +5 -5
- data/vendor/libgit2/src/fetchhead.c +8 -8
- data/vendor/libgit2/src/filebuf.c +6 -1
- data/vendor/libgit2/src/filebuf.h +1 -0
- data/vendor/libgit2/src/fileops.c +22 -1
- data/vendor/libgit2/src/fileops.h +8 -2
- data/vendor/libgit2/src/fnmatch.c +18 -5
- data/vendor/libgit2/src/global.c +21 -4
- data/vendor/libgit2/src/global.h +6 -0
- data/vendor/libgit2/src/graph.c +1 -1
- data/vendor/libgit2/src/index.c +159 -46
- data/vendor/libgit2/src/index.h +2 -0
- data/vendor/libgit2/src/iterator.c +1573 -1468
- data/vendor/libgit2/src/iterator.h +52 -69
- data/vendor/libgit2/src/merge.c +163 -64
- data/vendor/libgit2/src/merge.h +61 -2
- data/vendor/libgit2/src/merge_driver.c +397 -0
- data/vendor/libgit2/src/merge_driver.h +60 -0
- data/vendor/libgit2/src/merge_file.c +11 -49
- data/vendor/libgit2/src/netops.c +12 -10
- data/vendor/libgit2/src/object_api.c +19 -1
- data/vendor/libgit2/src/odb.c +228 -52
- data/vendor/libgit2/src/odb_loose.c +19 -1
- data/vendor/libgit2/src/odb_mempack.c +1 -1
- data/vendor/libgit2/src/odb_pack.c +27 -1
- data/vendor/libgit2/src/openssl_stream.c +4 -5
- data/vendor/libgit2/src/pack-objects.c +105 -76
- data/vendor/libgit2/src/pack-objects.h +13 -12
- data/vendor/libgit2/src/pack.c +16 -10
- data/vendor/libgit2/src/pack.h +2 -0
- data/vendor/libgit2/src/patch.c +216 -0
- data/vendor/libgit2/src/patch.h +66 -0
- data/vendor/libgit2/src/{diff_patch.c → patch_generate.c} +203 -376
- data/vendor/libgit2/src/patch_generate.h +68 -0
- data/vendor/libgit2/src/patch_parse.c +1159 -0
- data/vendor/libgit2/src/patch_parse.h +56 -0
- data/vendor/libgit2/src/path.c +38 -2
- data/vendor/libgit2/src/path.h +18 -0
- data/vendor/libgit2/src/pathspec.c +1 -1
- data/vendor/libgit2/src/pool.h +5 -0
- data/vendor/libgit2/src/pqueue.c +12 -5
- data/vendor/libgit2/src/pqueue.h +1 -0
- data/vendor/libgit2/src/proxy.c +32 -0
- data/vendor/libgit2/src/proxy.h +14 -0
- data/vendor/libgit2/src/push.c +1 -1
- data/vendor/libgit2/src/rebase.c +63 -36
- data/vendor/libgit2/src/refdb.c +4 -2
- data/vendor/libgit2/src/refdb_fs.c +82 -54
- data/vendor/libgit2/src/refs.c +13 -1
- data/vendor/libgit2/src/remote.c +20 -81
- data/vendor/libgit2/src/repository.c +212 -29
- data/vendor/libgit2/src/reset.c +1 -1
- data/vendor/libgit2/src/revparse.c +1 -1
- data/vendor/libgit2/src/revwalk.c +260 -184
- data/vendor/libgit2/src/settings.c +11 -3
- data/vendor/libgit2/src/signature.c +27 -2
- data/vendor/libgit2/src/sortedcache.c +14 -5
- data/vendor/libgit2/src/stash.c +1 -0
- data/vendor/libgit2/src/status.c +1 -0
- data/vendor/libgit2/src/stransport_stream.c +4 -2
- data/vendor/libgit2/src/stream.h +2 -2
- data/vendor/libgit2/src/submodule.c +16 -4
- data/vendor/libgit2/src/sysdir.c +1 -1
- data/vendor/libgit2/src/transport.c +3 -5
- data/vendor/libgit2/src/transports/http.c +38 -13
- data/vendor/libgit2/src/transports/local.c +4 -1
- data/vendor/libgit2/src/transports/smart.c +6 -0
- data/vendor/libgit2/src/transports/smart.h +1 -0
- data/vendor/libgit2/src/transports/smart_pkt.c +5 -13
- data/vendor/libgit2/src/transports/smart_protocol.c +22 -7
- data/vendor/libgit2/src/transports/winhttp.c +144 -11
- data/vendor/libgit2/src/tree.c +267 -2
- data/vendor/libgit2/src/unix/posix.h +10 -0
- data/vendor/libgit2/src/unix/pthread.h +2 -0
- data/vendor/libgit2/src/util.c +25 -2
- data/vendor/libgit2/src/util.h +10 -0
- data/vendor/libgit2/src/varint.c +44 -0
- data/vendor/libgit2/src/varint.h +15 -0
- data/vendor/libgit2/src/vector.c +58 -0
- data/vendor/libgit2/src/vector.h +8 -0
- data/vendor/libgit2/src/win32/posix.h +3 -0
- data/vendor/libgit2/src/win32/thread.c +18 -0
- data/vendor/libgit2/src/win32/thread.h +2 -0
- data/vendor/libgit2/src/win32/w32_util.h +1 -1
- data/vendor/libgit2/src/zstream.c +37 -8
- data/vendor/libgit2/src/zstream.h +8 -1
- metadata +100 -82
- data/vendor/libgit2/Makefile.embed +0 -60
- data/vendor/libgit2/src/delta-apply.c +0 -166
- data/vendor/libgit2/src/delta-apply.h +0 -62
- data/vendor/libgit2/src/diff_patch.h +0 -83
@@ -0,0 +1,123 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) the libgit2 contributors. All rights reserved.
|
3
|
+
*
|
4
|
+
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
+
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
+
*/
|
7
|
+
#ifndef INCLUDE_diff_generate_h__
|
8
|
+
#define INCLUDE_diff_generate_h__
|
9
|
+
|
10
|
+
enum {
|
11
|
+
GIT_DIFFCAPS_HAS_SYMLINKS = (1 << 0), /* symlinks on platform? */
|
12
|
+
GIT_DIFFCAPS_IGNORE_STAT = (1 << 1), /* use stat? */
|
13
|
+
GIT_DIFFCAPS_TRUST_MODE_BITS = (1 << 2), /* use st_mode? */
|
14
|
+
GIT_DIFFCAPS_TRUST_CTIME = (1 << 3), /* use st_ctime? */
|
15
|
+
GIT_DIFFCAPS_USE_DEV = (1 << 4), /* use st_dev? */
|
16
|
+
};
|
17
|
+
|
18
|
+
#define DIFF_FLAGS_KNOWN_BINARY (GIT_DIFF_FLAG_BINARY|GIT_DIFF_FLAG_NOT_BINARY)
|
19
|
+
#define DIFF_FLAGS_NOT_BINARY (GIT_DIFF_FLAG_NOT_BINARY|GIT_DIFF_FLAG__NO_DATA)
|
20
|
+
|
21
|
+
enum {
|
22
|
+
GIT_DIFF_FLAG__FREE_PATH = (1 << 7), /* `path` is allocated memory */
|
23
|
+
GIT_DIFF_FLAG__FREE_DATA = (1 << 8), /* internal file data is allocated */
|
24
|
+
GIT_DIFF_FLAG__UNMAP_DATA = (1 << 9), /* internal file data is mmap'ed */
|
25
|
+
GIT_DIFF_FLAG__NO_DATA = (1 << 10), /* file data should not be loaded */
|
26
|
+
GIT_DIFF_FLAG__FREE_BLOB = (1 << 11), /* release the blob when done */
|
27
|
+
GIT_DIFF_FLAG__LOADED = (1 << 12), /* file data has been loaded */
|
28
|
+
|
29
|
+
GIT_DIFF_FLAG__TO_DELETE = (1 << 16), /* delete entry during rename det. */
|
30
|
+
GIT_DIFF_FLAG__TO_SPLIT = (1 << 17), /* split entry during rename det. */
|
31
|
+
GIT_DIFF_FLAG__IS_RENAME_TARGET = (1 << 18),
|
32
|
+
GIT_DIFF_FLAG__IS_RENAME_SOURCE = (1 << 19),
|
33
|
+
GIT_DIFF_FLAG__HAS_SELF_SIMILARITY = (1 << 20),
|
34
|
+
};
|
35
|
+
|
36
|
+
#define GIT_DIFF_FLAG__CLEAR_INTERNAL(F) (F) = ((F) & 0x00FFFF)
|
37
|
+
|
38
|
+
#define GIT_DIFF__VERBOSE (1 << 30)
|
39
|
+
|
40
|
+
extern void git_diff_addref(git_diff *diff);
|
41
|
+
|
42
|
+
extern bool git_diff_delta__should_skip(
|
43
|
+
const git_diff_options *opts, const git_diff_delta *delta);
|
44
|
+
|
45
|
+
extern int git_diff__from_iterators(
|
46
|
+
git_diff **diff_ptr,
|
47
|
+
git_repository *repo,
|
48
|
+
git_iterator *old_iter,
|
49
|
+
git_iterator *new_iter,
|
50
|
+
const git_diff_options *opts);
|
51
|
+
|
52
|
+
extern int git_diff__commit(
|
53
|
+
git_diff **diff, git_repository *repo, const git_commit *commit, const git_diff_options *opts);
|
54
|
+
|
55
|
+
extern int git_diff__paired_foreach(
|
56
|
+
git_diff *idx2head,
|
57
|
+
git_diff *wd2idx,
|
58
|
+
int (*cb)(git_diff_delta *i2h, git_diff_delta *w2i, void *payload),
|
59
|
+
void *payload);
|
60
|
+
|
61
|
+
/* Merge two `git_diff`s according to the callback given by `cb`. */
|
62
|
+
|
63
|
+
typedef git_diff_delta *(*git_diff__merge_cb)(
|
64
|
+
const git_diff_delta *left,
|
65
|
+
const git_diff_delta *right,
|
66
|
+
git_pool *pool);
|
67
|
+
|
68
|
+
extern int git_diff__merge(
|
69
|
+
git_diff *onto, const git_diff *from, git_diff__merge_cb cb);
|
70
|
+
|
71
|
+
extern git_diff_delta *git_diff__merge_like_cgit(
|
72
|
+
const git_diff_delta *a,
|
73
|
+
const git_diff_delta *b,
|
74
|
+
git_pool *pool);
|
75
|
+
|
76
|
+
/* Duplicate a `git_diff_delta` out of the `git_pool` */
|
77
|
+
extern git_diff_delta *git_diff__delta_dup(
|
78
|
+
const git_diff_delta *d, git_pool *pool);
|
79
|
+
|
80
|
+
extern int git_diff__oid_for_file(
|
81
|
+
git_oid *out,
|
82
|
+
git_diff *diff,
|
83
|
+
const char *path,
|
84
|
+
uint16_t mode,
|
85
|
+
git_off_t size);
|
86
|
+
|
87
|
+
extern int git_diff__oid_for_entry(
|
88
|
+
git_oid *out,
|
89
|
+
git_diff *diff,
|
90
|
+
const git_index_entry *src,
|
91
|
+
uint16_t mode,
|
92
|
+
const git_oid *update_match);
|
93
|
+
|
94
|
+
/*
|
95
|
+
* Sometimes a git_diff_file will have a zero size; this attempts to
|
96
|
+
* fill in the size without loading the blob if possible. If that is
|
97
|
+
* not possible, then it will return the git_odb_object that had to be
|
98
|
+
* loaded and the caller can use it or dispose of it as needed.
|
99
|
+
*/
|
100
|
+
GIT_INLINE(int) git_diff_file__resolve_zero_size(
|
101
|
+
git_diff_file *file, git_odb_object **odb_obj, git_repository *repo)
|
102
|
+
{
|
103
|
+
int error;
|
104
|
+
git_odb *odb;
|
105
|
+
size_t len;
|
106
|
+
git_otype type;
|
107
|
+
|
108
|
+
if ((error = git_repository_odb(&odb, repo)) < 0)
|
109
|
+
return error;
|
110
|
+
|
111
|
+
error = git_odb__read_header_or_object(
|
112
|
+
odb_obj, &len, &type, odb, &file->id);
|
113
|
+
|
114
|
+
git_odb_free(odb);
|
115
|
+
|
116
|
+
if (!error)
|
117
|
+
file->size = (git_off_t)len;
|
118
|
+
|
119
|
+
return error;
|
120
|
+
}
|
121
|
+
|
122
|
+
#endif
|
123
|
+
|
@@ -0,0 +1,101 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) the libgit2 contributors. All rights reserved.
|
3
|
+
*
|
4
|
+
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
+
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
+
*/
|
7
|
+
#include "common.h"
|
8
|
+
#include "diff.h"
|
9
|
+
#include "diff_parse.h"
|
10
|
+
#include "patch.h"
|
11
|
+
#include "patch_parse.h"
|
12
|
+
|
13
|
+
static void diff_parsed_free(git_diff *d)
|
14
|
+
{
|
15
|
+
git_diff_parsed *diff = (git_diff_parsed *)d;
|
16
|
+
git_patch *patch;
|
17
|
+
size_t i;
|
18
|
+
|
19
|
+
git_vector_foreach(&diff->patches, i, patch)
|
20
|
+
git_patch_free(patch);
|
21
|
+
|
22
|
+
git_vector_free(&diff->patches);
|
23
|
+
|
24
|
+
git_vector_free(&diff->base.deltas);
|
25
|
+
git_pool_clear(&diff->base.pool);
|
26
|
+
|
27
|
+
git__memzero(diff, sizeof(*diff));
|
28
|
+
git__free(diff);
|
29
|
+
}
|
30
|
+
|
31
|
+
static git_diff_parsed *diff_parsed_alloc(void)
|
32
|
+
{
|
33
|
+
git_diff_parsed *diff;
|
34
|
+
|
35
|
+
if ((diff = git__calloc(1, sizeof(git_diff_parsed))) == NULL)
|
36
|
+
return NULL;
|
37
|
+
|
38
|
+
GIT_REFCOUNT_INC(diff);
|
39
|
+
diff->base.type = GIT_DIFF_TYPE_PARSED;
|
40
|
+
diff->base.opts.flags &= ~GIT_DIFF_IGNORE_CASE;
|
41
|
+
diff->base.strcomp = git__strcmp;
|
42
|
+
diff->base.strncomp = git__strncmp;
|
43
|
+
diff->base.pfxcomp = git__prefixcmp;
|
44
|
+
diff->base.entrycomp = git_diff__entry_cmp;
|
45
|
+
diff->base.patch_fn = git_patch_parsed_from_diff;
|
46
|
+
diff->base.free_fn = diff_parsed_free;
|
47
|
+
|
48
|
+
git_pool_init(&diff->base.pool, 1);
|
49
|
+
|
50
|
+
if (git_vector_init(&diff->patches, 0, NULL) < 0 ||
|
51
|
+
git_vector_init(&diff->base.deltas, 0, git_diff_delta__cmp) < 0) {
|
52
|
+
git_diff_free(&diff->base);
|
53
|
+
return NULL;
|
54
|
+
}
|
55
|
+
|
56
|
+
git_vector_set_cmp(&diff->base.deltas, git_diff_delta__cmp);
|
57
|
+
|
58
|
+
return diff;
|
59
|
+
}
|
60
|
+
|
61
|
+
int git_diff_from_buffer(
|
62
|
+
git_diff **out,
|
63
|
+
const char *content,
|
64
|
+
size_t content_len)
|
65
|
+
{
|
66
|
+
git_diff_parsed *diff;
|
67
|
+
git_patch *patch;
|
68
|
+
git_patch_parse_ctx *ctx = NULL;
|
69
|
+
int error = 0;
|
70
|
+
|
71
|
+
*out = NULL;
|
72
|
+
|
73
|
+
diff = diff_parsed_alloc();
|
74
|
+
GITERR_CHECK_ALLOC(diff);
|
75
|
+
|
76
|
+
ctx = git_patch_parse_ctx_init(content, content_len, NULL);
|
77
|
+
GITERR_CHECK_ALLOC(ctx);
|
78
|
+
|
79
|
+
while (ctx->remain_len) {
|
80
|
+
if ((error = git_patch_parse(&patch, ctx)) < 0)
|
81
|
+
break;
|
82
|
+
|
83
|
+
git_vector_insert(&diff->patches, patch);
|
84
|
+
git_vector_insert(&diff->base.deltas, patch->delta);
|
85
|
+
}
|
86
|
+
|
87
|
+
if (error == GIT_ENOTFOUND && git_vector_length(&diff->patches) > 0) {
|
88
|
+
giterr_clear();
|
89
|
+
error = 0;
|
90
|
+
}
|
91
|
+
|
92
|
+
git_patch_parse_ctx_free(ctx);
|
93
|
+
|
94
|
+
if (error < 0)
|
95
|
+
git_diff_free(&diff->base);
|
96
|
+
else
|
97
|
+
*out = &diff->base;
|
98
|
+
|
99
|
+
return error;
|
100
|
+
}
|
101
|
+
|
@@ -0,0 +1,18 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) the libgit2 contributors. All rights reserved.
|
3
|
+
*
|
4
|
+
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
+
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
+
*/
|
7
|
+
#ifndef INCLUDE_diff_parse_h__
|
8
|
+
#define INCLUDE_diff_parse_h__
|
9
|
+
|
10
|
+
#include "diff.h"
|
11
|
+
|
12
|
+
typedef struct {
|
13
|
+
struct git_diff base;
|
14
|
+
|
15
|
+
git_vector patches;
|
16
|
+
} git_diff_parsed;
|
17
|
+
|
18
|
+
#endif
|