rugged 0.27.7 → 0.27.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/rugged/version.rb +1 -1
- data/vendor/libgit2/AUTHORS +1 -0
- data/vendor/libgit2/CMakeLists.txt +99 -51
- data/vendor/libgit2/COPYING +28 -0
- data/vendor/libgit2/cmake/Modules/AddCFlagIfSupported.cmake +15 -1
- data/vendor/libgit2/cmake/Modules/CheckPrototypeDefinition.c.in +29 -0
- data/vendor/libgit2/cmake/Modules/CheckPrototypeDefinition.cmake +96 -0
- data/vendor/libgit2/cmake/Modules/EnableWarnings.cmake +9 -8
- data/vendor/libgit2/cmake/Modules/FindCoreFoundation.cmake +2 -2
- data/vendor/libgit2/cmake/Modules/FindGSSAPI.cmake +1 -1
- data/vendor/libgit2/cmake/Modules/FindGSSFramework.cmake +28 -0
- data/vendor/libgit2/cmake/Modules/FindIconv.cmake +11 -6
- data/vendor/libgit2/cmake/Modules/FindPCRE.cmake +38 -0
- data/vendor/libgit2/cmake/Modules/FindPCRE2.cmake +37 -0
- data/vendor/libgit2/cmake/Modules/FindSecurity.cmake +2 -2
- data/vendor/libgit2/cmake/Modules/FindStatNsec.cmake +6 -0
- data/vendor/libgit2/cmake/Modules/PkgBuildConfig.cmake +110 -0
- data/vendor/libgit2/cmake/Modules/SelectGSSAPI.cmake +53 -0
- data/vendor/libgit2/cmake/Modules/SelectHTTPSBackend.cmake +124 -0
- data/vendor/libgit2/cmake/Modules/SelectHashes.cmake +66 -0
- data/vendor/libgit2/deps/http-parser/http_parser.c +11 -6
- data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +21 -0
- data/vendor/libgit2/deps/ntlmclient/compat.h +33 -0
- data/vendor/libgit2/deps/ntlmclient/crypt.h +64 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +120 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +18 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +145 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +18 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +130 -0
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +21 -0
- data/vendor/libgit2/deps/ntlmclient/ntlm.c +1420 -0
- data/vendor/libgit2/deps/ntlmclient/ntlm.h +174 -0
- data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +320 -0
- data/vendor/libgit2/deps/ntlmclient/unicode.h +36 -0
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +445 -0
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +201 -0
- data/vendor/libgit2/deps/ntlmclient/utf8.h +1257 -0
- data/vendor/libgit2/deps/ntlmclient/util.c +21 -0
- data/vendor/libgit2/deps/ntlmclient/util.h +14 -0
- data/vendor/libgit2/deps/pcre/CMakeLists.txt +140 -0
- data/vendor/libgit2/deps/pcre/COPYING +5 -0
- data/vendor/libgit2/deps/pcre/cmake/COPYING-CMAKE-SCRIPTS +22 -0
- data/vendor/libgit2/deps/pcre/cmake/FindEditline.cmake +17 -0
- data/vendor/libgit2/deps/pcre/cmake/FindPackageHandleStandardArgs.cmake +58 -0
- data/vendor/libgit2/deps/pcre/cmake/FindReadline.cmake +29 -0
- data/vendor/libgit2/deps/pcre/config.h.in +57 -0
- data/vendor/libgit2/deps/pcre/pcre.h +641 -0
- data/vendor/libgit2/deps/pcre/pcre_byte_order.c +319 -0
- data/vendor/libgit2/deps/pcre/pcre_chartables.c +198 -0
- data/vendor/libgit2/deps/pcre/pcre_compile.c +9800 -0
- data/vendor/libgit2/deps/pcre/pcre_config.c +190 -0
- data/vendor/libgit2/deps/pcre/pcre_dfa_exec.c +3676 -0
- data/vendor/libgit2/deps/pcre/pcre_exec.c +7173 -0
- data/vendor/libgit2/deps/pcre/pcre_fullinfo.c +245 -0
- data/vendor/libgit2/deps/pcre/pcre_get.c +669 -0
- data/vendor/libgit2/deps/pcre/pcre_globals.c +86 -0
- data/vendor/libgit2/deps/pcre/pcre_internal.h +2787 -0
- data/vendor/libgit2/deps/pcre/pcre_jit_compile.c +11913 -0
- data/vendor/libgit2/deps/pcre/pcre_maketables.c +156 -0
- data/vendor/libgit2/deps/pcre/pcre_newline.c +210 -0
- data/vendor/libgit2/deps/pcre/pcre_ord2utf8.c +94 -0
- data/vendor/libgit2/deps/pcre/pcre_printint.c +834 -0
- data/vendor/libgit2/deps/pcre/pcre_refcount.c +92 -0
- data/vendor/libgit2/deps/pcre/pcre_string_utils.c +211 -0
- data/vendor/libgit2/deps/pcre/pcre_study.c +1686 -0
- data/vendor/libgit2/deps/pcre/pcre_tables.c +727 -0
- data/vendor/libgit2/deps/pcre/pcre_ucd.c +3644 -0
- data/vendor/libgit2/deps/pcre/pcre_valid_utf8.c +301 -0
- data/vendor/libgit2/deps/pcre/pcre_version.c +98 -0
- data/vendor/libgit2/deps/pcre/pcre_xclass.c +268 -0
- data/vendor/libgit2/deps/pcre/pcreposix.c +421 -0
- data/vendor/libgit2/deps/pcre/pcreposix.h +117 -0
- data/vendor/libgit2/deps/pcre/ucp.h +224 -0
- data/vendor/libgit2/deps/winhttp/COPYING.GPL +993 -0
- data/vendor/libgit2/deps/winhttp/COPYING.LGPL +502 -0
- data/vendor/libgit2/deps/zlib/CMakeLists.txt +1 -0
- data/vendor/libgit2/deps/zlib/COPYING +27 -0
- data/vendor/libgit2/deps/zlib/adler32.c +0 -7
- data/vendor/libgit2/deps/zlib/crc32.c +0 -7
- data/vendor/libgit2/include/git2/annotated_commit.h +9 -0
- data/vendor/libgit2/include/git2/apply.h +149 -0
- data/vendor/libgit2/include/git2/attr.h +20 -13
- data/vendor/libgit2/include/git2/blame.h +4 -4
- data/vendor/libgit2/include/git2/blob.h +44 -12
- data/vendor/libgit2/include/git2/buffer.h +20 -26
- data/vendor/libgit2/include/git2/cert.h +135 -0
- data/vendor/libgit2/include/git2/checkout.h +53 -21
- data/vendor/libgit2/include/git2/cherrypick.h +3 -3
- data/vendor/libgit2/include/git2/clone.h +5 -5
- data/vendor/libgit2/include/git2/commit.h +25 -3
- data/vendor/libgit2/include/git2/common.h +35 -10
- data/vendor/libgit2/include/git2/config.h +29 -19
- data/vendor/libgit2/include/git2/cred.h +308 -0
- data/vendor/libgit2/include/git2/deprecated.h +493 -0
- data/vendor/libgit2/include/git2/describe.h +4 -4
- data/vendor/libgit2/include/git2/diff.h +177 -135
- data/vendor/libgit2/include/git2/errors.h +53 -46
- data/vendor/libgit2/include/git2/filter.h +8 -0
- data/vendor/libgit2/include/git2/index.h +74 -52
- data/vendor/libgit2/include/git2/indexer.h +76 -6
- data/vendor/libgit2/include/git2/merge.h +25 -10
- data/vendor/libgit2/include/git2/net.h +0 -5
- data/vendor/libgit2/include/git2/notes.h +1 -1
- data/vendor/libgit2/include/git2/object.h +17 -29
- data/vendor/libgit2/include/git2/odb.h +12 -11
- data/vendor/libgit2/include/git2/odb_backend.h +10 -9
- data/vendor/libgit2/include/git2/oid.h +2 -2
- data/vendor/libgit2/include/git2/pack.h +14 -3
- data/vendor/libgit2/include/git2/proxy.h +5 -3
- data/vendor/libgit2/include/git2/rebase.h +46 -2
- data/vendor/libgit2/include/git2/refs.h +34 -16
- data/vendor/libgit2/include/git2/remote.h +111 -14
- data/vendor/libgit2/include/git2/repository.h +69 -34
- data/vendor/libgit2/include/git2/revert.h +1 -1
- data/vendor/libgit2/include/git2/revwalk.h +7 -7
- data/vendor/libgit2/include/git2/signature.h +2 -2
- data/vendor/libgit2/include/git2/stash.h +5 -5
- data/vendor/libgit2/include/git2/status.h +26 -17
- data/vendor/libgit2/include/git2/submodule.h +23 -6
- data/vendor/libgit2/include/git2/sys/alloc.h +18 -18
- data/vendor/libgit2/include/git2/sys/commit.h +1 -1
- data/vendor/libgit2/include/git2/sys/config.h +13 -13
- data/vendor/libgit2/include/git2/sys/cred.h +90 -0
- data/vendor/libgit2/include/git2/sys/filter.h +6 -6
- data/vendor/libgit2/include/git2/sys/merge.h +3 -3
- data/vendor/libgit2/include/git2/sys/odb_backend.h +66 -22
- data/vendor/libgit2/include/git2/sys/path.h +14 -5
- data/vendor/libgit2/include/git2/sys/refdb_backend.h +76 -40
- data/vendor/libgit2/include/git2/sys/repository.h +5 -1
- data/vendor/libgit2/include/git2/sys/stream.h +92 -12
- data/vendor/libgit2/include/git2/sys/transport.h +129 -83
- data/vendor/libgit2/include/git2/tag.h +13 -4
- data/vendor/libgit2/include/git2/trace.h +2 -2
- data/vendor/libgit2/include/git2/transport.h +11 -311
- data/vendor/libgit2/include/git2/tree.h +4 -4
- data/vendor/libgit2/include/git2/types.h +25 -106
- data/vendor/libgit2/include/git2/version.h +3 -3
- data/vendor/libgit2/include/git2/worktree.h +5 -5
- data/vendor/libgit2/include/git2.h +4 -0
- data/vendor/libgit2/src/CMakeLists.txt +104 -235
- data/vendor/libgit2/src/alloc.c +14 -18
- data/vendor/libgit2/src/{stdalloc.c → allocators/stdalloc.c} +7 -8
- data/vendor/libgit2/src/{stdalloc.h → allocators/stdalloc.h} +4 -4
- data/vendor/libgit2/src/allocators/win32_crtdbg.c +118 -0
- data/vendor/libgit2/src/{transports/cred.h → allocators/win32_crtdbg.h} +5 -4
- data/vendor/libgit2/src/annotated_commit.c +18 -11
- data/vendor/libgit2/src/apply.c +535 -28
- data/vendor/libgit2/src/apply.h +3 -1
- data/vendor/libgit2/src/array.h +2 -2
- data/vendor/libgit2/src/attr.c +77 -71
- data/vendor/libgit2/src/attr_file.c +203 -117
- data/vendor/libgit2/src/attr_file.h +9 -9
- data/vendor/libgit2/src/attrcache.c +49 -51
- data/vendor/libgit2/src/attrcache.h +2 -1
- data/vendor/libgit2/src/blame.c +38 -18
- data/vendor/libgit2/src/blame.h +1 -1
- data/vendor/libgit2/src/blame_git.c +29 -15
- data/vendor/libgit2/src/blob.c +123 -37
- data/vendor/libgit2/src/blob.h +19 -2
- data/vendor/libgit2/src/branch.c +47 -23
- data/vendor/libgit2/src/buf_text.c +7 -6
- data/vendor/libgit2/src/buffer.c +60 -53
- data/vendor/libgit2/src/cache.c +38 -45
- data/vendor/libgit2/src/cache.h +3 -3
- data/vendor/libgit2/src/cc-compat.h +20 -3
- data/vendor/libgit2/src/checkout.c +77 -67
- data/vendor/libgit2/src/cherrypick.c +12 -6
- data/vendor/libgit2/src/clone.c +36 -14
- data/vendor/libgit2/src/clone.h +4 -0
- data/vendor/libgit2/src/commit.c +103 -48
- data/vendor/libgit2/src/commit.h +7 -0
- data/vendor/libgit2/src/commit_list.c +36 -78
- data/vendor/libgit2/src/commit_list.h +2 -2
- data/vendor/libgit2/src/common.h +24 -90
- data/vendor/libgit2/src/config.c +203 -176
- data/vendor/libgit2/src/config.h +8 -20
- data/vendor/libgit2/src/config_backend.h +96 -0
- data/vendor/libgit2/src/config_cache.c +41 -35
- data/vendor/libgit2/src/config_entries.c +229 -0
- data/vendor/libgit2/src/config_entries.h +24 -0
- data/vendor/libgit2/src/config_file.c +422 -680
- data/vendor/libgit2/src/config_mem.c +220 -0
- data/vendor/libgit2/src/config_parse.c +96 -68
- data/vendor/libgit2/src/config_parse.h +15 -14
- data/vendor/libgit2/src/config_snapshot.c +206 -0
- data/vendor/libgit2/src/crlf.c +219 -196
- data/vendor/libgit2/src/delta.c +25 -18
- data/vendor/libgit2/src/describe.c +42 -41
- data/vendor/libgit2/src/diff.c +52 -67
- data/vendor/libgit2/src/diff.h +2 -1
- data/vendor/libgit2/src/diff_driver.c +44 -46
- data/vendor/libgit2/src/diff_file.c +16 -14
- data/vendor/libgit2/src/diff_file.h +1 -1
- data/vendor/libgit2/src/diff_generate.c +158 -103
- data/vendor/libgit2/src/diff_generate.h +3 -3
- data/vendor/libgit2/src/diff_parse.c +4 -4
- data/vendor/libgit2/src/diff_print.c +34 -22
- data/vendor/libgit2/src/diff_stats.c +22 -7
- data/vendor/libgit2/src/diff_tform.c +18 -16
- data/vendor/libgit2/src/diff_xdiff.c +3 -3
- data/vendor/libgit2/src/errors.c +51 -39
- data/vendor/libgit2/src/errors.h +81 -0
- data/vendor/libgit2/src/features.h.in +9 -3
- data/vendor/libgit2/src/fetch.c +8 -3
- data/vendor/libgit2/src/fetchhead.c +12 -12
- data/vendor/libgit2/src/filebuf.c +28 -32
- data/vendor/libgit2/src/filebuf.h +2 -2
- data/vendor/libgit2/src/filter.c +47 -33
- data/vendor/libgit2/src/filter.h +0 -10
- data/vendor/libgit2/src/{fileops.c → futils.c} +70 -63
- data/vendor/libgit2/src/{fileops.h → futils.h} +6 -6
- data/vendor/libgit2/src/global.c +35 -55
- data/vendor/libgit2/src/global.h +0 -2
- data/vendor/libgit2/src/hash/sha1/collisiondetect.c +48 -0
- data/vendor/libgit2/src/hash/sha1/collisiondetect.h +19 -0
- data/vendor/libgit2/src/hash/{hash_common_crypto.h → sha1/common_crypto.c} +17 -17
- data/vendor/libgit2/src/hash/sha1/common_crypto.h +19 -0
- data/vendor/libgit2/src/hash/{hash_generic.c → sha1/generic.c} +22 -10
- data/vendor/libgit2/src/hash/{hash_generic.h → sha1/generic.h} +4 -10
- data/vendor/libgit2/src/hash/{hash_mbedtls.c → sha1/mbedtls.c} +15 -7
- data/vendor/libgit2/src/hash/{hash_mbedtls.h → sha1/mbedtls.h} +6 -7
- data/vendor/libgit2/src/hash/sha1/openssl.c +59 -0
- data/vendor/libgit2/src/hash/sha1/openssl.h +19 -0
- data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/sha1.c +14 -3
- data/vendor/libgit2/src/hash/{hash_win32.c → sha1/win32.c} +47 -37
- data/vendor/libgit2/src/hash/{hash_win32.h → sha1/win32.h} +6 -19
- data/vendor/libgit2/src/hash/sha1.h +38 -0
- data/vendor/libgit2/src/hash.c +61 -0
- data/vendor/libgit2/src/hash.h +20 -21
- data/vendor/libgit2/src/hashsig.c +5 -5
- data/vendor/libgit2/src/idxmap.c +107 -61
- data/vendor/libgit2/src/idxmap.h +153 -31
- data/vendor/libgit2/src/ignore.c +38 -42
- data/vendor/libgit2/src/index.c +264 -199
- data/vendor/libgit2/src/index.h +7 -1
- data/vendor/libgit2/src/indexer.c +338 -167
- data/vendor/libgit2/src/integer.h +71 -26
- data/vendor/libgit2/src/iterator.c +134 -62
- data/vendor/libgit2/src/iterator.h +15 -0
- data/vendor/libgit2/src/mailmap.c +8 -8
- data/vendor/libgit2/src/map.h +1 -1
- data/vendor/libgit2/src/merge.c +137 -93
- data/vendor/libgit2/src/merge_driver.c +11 -11
- data/vendor/libgit2/src/merge_file.c +2 -2
- data/vendor/libgit2/src/mwindow.c +24 -29
- data/vendor/libgit2/src/mwindow.h +4 -4
- data/vendor/libgit2/src/net.c +184 -0
- data/vendor/libgit2/src/net.h +36 -0
- data/vendor/libgit2/src/netops.c +55 -156
- data/vendor/libgit2/src/netops.h +3 -23
- data/vendor/libgit2/src/notes.c +14 -9
- data/vendor/libgit2/src/object.c +120 -69
- data/vendor/libgit2/src/object.h +22 -9
- data/vendor/libgit2/src/object_api.c +8 -8
- data/vendor/libgit2/src/odb.c +111 -88
- data/vendor/libgit2/src/odb.h +8 -7
- data/vendor/libgit2/src/odb_loose.c +58 -47
- data/vendor/libgit2/src/odb_mempack.c +21 -34
- data/vendor/libgit2/src/odb_pack.c +17 -13
- data/vendor/libgit2/src/offmap.c +53 -35
- data/vendor/libgit2/src/offmap.h +108 -21
- data/vendor/libgit2/src/oid.c +12 -7
- data/vendor/libgit2/src/oidmap.c +49 -47
- data/vendor/libgit2/src/oidmap.h +101 -24
- data/vendor/libgit2/src/pack-objects.c +87 -86
- data/vendor/libgit2/src/pack-objects.h +2 -8
- data/vendor/libgit2/src/pack.c +94 -96
- data/vendor/libgit2/src/pack.h +16 -18
- data/vendor/libgit2/src/parse.c +17 -4
- data/vendor/libgit2/src/parse.h +3 -3
- data/vendor/libgit2/src/patch.c +3 -3
- data/vendor/libgit2/src/patch_generate.c +18 -18
- data/vendor/libgit2/src/patch_parse.c +147 -79
- data/vendor/libgit2/src/path.c +207 -62
- data/vendor/libgit2/src/path.h +14 -0
- data/vendor/libgit2/src/pathspec.c +18 -18
- data/vendor/libgit2/src/pool.c +26 -22
- data/vendor/libgit2/src/pool.h +7 -7
- data/vendor/libgit2/src/posix.c +10 -10
- data/vendor/libgit2/src/posix.h +12 -1
- data/vendor/libgit2/src/proxy.c +8 -3
- data/vendor/libgit2/src/push.c +35 -29
- data/vendor/libgit2/src/push.h +2 -1
- data/vendor/libgit2/src/reader.c +265 -0
- data/vendor/libgit2/src/reader.h +107 -0
- data/vendor/libgit2/src/rebase.c +97 -38
- data/vendor/libgit2/src/refdb.c +15 -3
- data/vendor/libgit2/src/refdb_fs.c +318 -222
- data/vendor/libgit2/src/reflog.c +13 -15
- data/vendor/libgit2/src/refs.c +122 -89
- data/vendor/libgit2/src/refs.h +5 -3
- data/vendor/libgit2/src/refspec.c +27 -33
- data/vendor/libgit2/src/regexp.c +221 -0
- data/vendor/libgit2/src/regexp.h +97 -0
- data/vendor/libgit2/src/remote.c +229 -178
- data/vendor/libgit2/src/remote.h +11 -2
- data/vendor/libgit2/src/repository.c +227 -172
- data/vendor/libgit2/src/repository.h +52 -40
- data/vendor/libgit2/src/reset.c +7 -7
- data/vendor/libgit2/src/revert.c +11 -6
- data/vendor/libgit2/src/revparse.c +46 -46
- data/vendor/libgit2/src/revwalk.c +89 -54
- data/vendor/libgit2/src/revwalk.h +20 -0
- data/vendor/libgit2/src/settings.c +22 -9
- data/vendor/libgit2/src/signature.c +15 -13
- data/vendor/libgit2/src/sortedcache.c +22 -36
- data/vendor/libgit2/src/sortedcache.h +1 -1
- data/vendor/libgit2/src/stash.c +56 -76
- data/vendor/libgit2/src/status.c +27 -21
- data/vendor/libgit2/src/stream.h +17 -2
- data/vendor/libgit2/src/streams/mbedtls.c +100 -80
- data/vendor/libgit2/src/streams/mbedtls.h +5 -2
- data/vendor/libgit2/src/streams/openssl.c +93 -81
- data/vendor/libgit2/src/streams/openssl.h +5 -2
- data/vendor/libgit2/src/streams/registry.c +118 -0
- data/vendor/libgit2/src/streams/registry.h +19 -0
- data/vendor/libgit2/src/streams/socket.c +55 -30
- data/vendor/libgit2/src/streams/stransport.c +57 -32
- data/vendor/libgit2/src/streams/stransport.h +5 -0
- data/vendor/libgit2/src/streams/tls.c +48 -20
- data/vendor/libgit2/src/streams/tls.h +12 -4
- data/vendor/libgit2/src/strmap.c +47 -74
- data/vendor/libgit2/src/strmap.h +108 -33
- data/vendor/libgit2/src/submodule.c +190 -169
- data/vendor/libgit2/src/submodule.h +1 -1
- data/vendor/libgit2/src/sysdir.c +25 -15
- data/vendor/libgit2/src/tag.c +39 -26
- data/vendor/libgit2/src/tag.h +2 -1
- data/vendor/libgit2/src/trace.c +2 -2
- data/vendor/libgit2/src/trace.h +2 -2
- data/vendor/libgit2/src/trailer.c +46 -32
- data/vendor/libgit2/src/transaction.c +30 -29
- data/vendor/libgit2/src/transport.c +3 -3
- data/vendor/libgit2/src/transports/auth.c +14 -10
- data/vendor/libgit2/src/transports/auth.h +10 -3
- data/vendor/libgit2/src/transports/auth_negotiate.c +31 -16
- data/vendor/libgit2/src/transports/auth_negotiate.h +2 -2
- data/vendor/libgit2/src/transports/auth_ntlm.c +223 -0
- data/vendor/libgit2/src/transports/auth_ntlm.h +35 -0
- data/vendor/libgit2/src/transports/cred.c +24 -24
- data/vendor/libgit2/src/transports/git.c +25 -30
- data/vendor/libgit2/src/transports/http.c +871 -335
- data/vendor/libgit2/src/transports/http.h +2 -0
- data/vendor/libgit2/src/transports/local.c +28 -28
- data/vendor/libgit2/src/transports/smart.c +64 -46
- data/vendor/libgit2/src/transports/smart.h +5 -6
- data/vendor/libgit2/src/transports/smart_pkt.c +162 -151
- data/vendor/libgit2/src/transports/smart_protocol.c +64 -94
- data/vendor/libgit2/src/transports/ssh.c +76 -65
- data/vendor/libgit2/src/transports/winhttp.c +328 -319
- data/vendor/libgit2/src/tree-cache.c +21 -14
- data/vendor/libgit2/src/tree.c +119 -112
- data/vendor/libgit2/src/tree.h +1 -0
- data/vendor/libgit2/src/unix/map.c +3 -3
- data/vendor/libgit2/src/unix/posix.h +1 -11
- data/vendor/libgit2/src/userdiff.h +3 -1
- data/vendor/libgit2/src/util.c +154 -93
- data/vendor/libgit2/src/util.h +19 -23
- data/vendor/libgit2/src/vector.c +15 -10
- data/vendor/libgit2/src/wildmatch.c +320 -0
- data/vendor/libgit2/src/wildmatch.h +23 -0
- data/vendor/libgit2/src/win32/dir.c +3 -3
- data/vendor/libgit2/src/win32/findfile.c +1 -1
- data/vendor/libgit2/src/win32/map.c +9 -11
- data/vendor/libgit2/src/win32/msvc-compat.h +6 -0
- data/vendor/libgit2/src/win32/path_w32.c +113 -9
- data/vendor/libgit2/src/win32/path_w32.h +18 -29
- data/vendor/libgit2/src/win32/posix.h +1 -4
- data/vendor/libgit2/src/win32/posix_w32.c +69 -44
- data/vendor/libgit2/src/win32/precompiled.h +0 -2
- data/vendor/libgit2/src/win32/thread.c +5 -10
- data/vendor/libgit2/src/win32/w32_buffer.c +9 -5
- data/vendor/libgit2/src/win32/w32_common.h +39 -0
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.c +2 -95
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -2
- data/vendor/libgit2/src/win32/w32_stack.c +6 -11
- data/vendor/libgit2/src/win32/w32_stack.h +3 -3
- data/vendor/libgit2/src/win32/w32_util.c +27 -64
- data/vendor/libgit2/src/win32/w32_util.h +5 -49
- data/vendor/libgit2/src/worktree.c +44 -30
- data/vendor/libgit2/src/xdiff/xdiffi.c +5 -5
- data/vendor/libgit2/src/xdiff/xhistogram.c +1 -1
- data/vendor/libgit2/src/xdiff/xmerge.c +27 -15
- data/vendor/libgit2/src/xdiff/xpatience.c +3 -0
- data/vendor/libgit2/src/zstream.c +4 -4
- metadata +115 -38
- data/vendor/libgit2/deps/regex/CMakeLists.txt +0 -2
- data/vendor/libgit2/deps/regex/config.h +0 -7
- data/vendor/libgit2/deps/regex/regcomp.c +0 -3857
- data/vendor/libgit2/deps/regex/regex.c +0 -92
- data/vendor/libgit2/deps/regex/regex.h +0 -582
- data/vendor/libgit2/deps/regex/regex_internal.c +0 -1744
- data/vendor/libgit2/deps/regex/regex_internal.h +0 -819
- data/vendor/libgit2/deps/regex/regexec.c +0 -4369
- data/vendor/libgit2/include/git2/inttypes.h +0 -309
- data/vendor/libgit2/include/git2/sys/time.h +0 -31
- data/vendor/libgit2/libgit2.pc.in +0 -13
- data/vendor/libgit2/src/config_file.h +0 -73
- data/vendor/libgit2/src/fnmatch.c +0 -248
- data/vendor/libgit2/src/fnmatch.h +0 -48
- data/vendor/libgit2/src/hash/hash_collisiondetect.h +0 -47
- data/vendor/libgit2/src/hash/hash_openssl.h +0 -59
- data/vendor/libgit2/src/streams/curl.c +0 -385
- data/vendor/libgit2/src/streams/curl.h +0 -17
- /data/vendor/libgit2/deps/http-parser/{LICENSE-MIT → COPYING} +0 -0
- /data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/sha1.h +0 -0
- /data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/ubc_check.c +0 -0
- /data/vendor/libgit2/src/hash/{sha1dc → sha1/sha1dc}/ubc_check.h +0 -0
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
#include "indexer.h"
|
|
11
11
|
#include "net.h"
|
|
12
12
|
#include "types.h"
|
|
13
|
+
#include "cert.h"
|
|
14
|
+
#include "cred.h"
|
|
13
15
|
|
|
14
16
|
/**
|
|
15
17
|
* @file git2/transport.h
|
|
@@ -20,323 +22,21 @@
|
|
|
20
22
|
*/
|
|
21
23
|
GIT_BEGIN_DECL
|
|
22
24
|
|
|
23
|
-
/** Signature of a function which creates a transport */
|
|
24
|
-
typedef int (*git_transport_cb)(git_transport **out, git_remote *owner, void *param);
|
|
25
|
-
|
|
26
|
-
/**
|
|
27
|
-
* Type of SSH host fingerprint
|
|
28
|
-
*/
|
|
29
|
-
typedef enum {
|
|
30
|
-
/** MD5 is available */
|
|
31
|
-
GIT_CERT_SSH_MD5 = (1 << 0),
|
|
32
|
-
/** SHA-1 is available */
|
|
33
|
-
GIT_CERT_SSH_SHA1 = (1 << 1),
|
|
34
|
-
} git_cert_ssh_t;
|
|
35
|
-
|
|
36
|
-
/**
|
|
37
|
-
* Hostkey information taken from libssh2
|
|
38
|
-
*/
|
|
39
|
-
typedef struct {
|
|
40
|
-
git_cert parent;
|
|
41
|
-
|
|
42
|
-
/**
|
|
43
|
-
* A hostkey type from libssh2, either
|
|
44
|
-
* `GIT_CERT_SSH_MD5` or `GIT_CERT_SSH_SHA1`
|
|
45
|
-
*/
|
|
46
|
-
git_cert_ssh_t type;
|
|
47
|
-
|
|
48
|
-
/**
|
|
49
|
-
* Hostkey hash. If type has `GIT_CERT_SSH_MD5` set, this will
|
|
50
|
-
* have the MD5 hash of the hostkey.
|
|
51
|
-
*/
|
|
52
|
-
unsigned char hash_md5[16];
|
|
53
|
-
|
|
54
|
-
/**
|
|
55
|
-
* Hostkey hash. If type has `GIT_CERT_SSH_SHA1` set, this will
|
|
56
|
-
* have the SHA-1 hash of the hostkey.
|
|
57
|
-
*/
|
|
58
|
-
unsigned char hash_sha1[20];
|
|
59
|
-
} git_cert_hostkey;
|
|
60
|
-
|
|
61
25
|
/**
|
|
62
|
-
*
|
|
63
|
-
*/
|
|
64
|
-
typedef struct {
|
|
65
|
-
git_cert parent;
|
|
66
|
-
/**
|
|
67
|
-
* Pointer to the X.509 certificate data
|
|
68
|
-
*/
|
|
69
|
-
void *data;
|
|
70
|
-
/**
|
|
71
|
-
* Length of the memory block pointed to by `data`.
|
|
72
|
-
*/
|
|
73
|
-
size_t len;
|
|
74
|
-
} git_cert_x509;
|
|
75
|
-
|
|
76
|
-
/*
|
|
77
|
-
*** Begin interface for credentials acquisition ***
|
|
78
|
-
*/
|
|
79
|
-
|
|
80
|
-
/** Authentication type requested */
|
|
81
|
-
typedef enum {
|
|
82
|
-
/* git_cred_userpass_plaintext */
|
|
83
|
-
GIT_CREDTYPE_USERPASS_PLAINTEXT = (1u << 0),
|
|
84
|
-
|
|
85
|
-
/* git_cred_ssh_key */
|
|
86
|
-
GIT_CREDTYPE_SSH_KEY = (1u << 1),
|
|
87
|
-
|
|
88
|
-
/* git_cred_ssh_custom */
|
|
89
|
-
GIT_CREDTYPE_SSH_CUSTOM = (1u << 2),
|
|
90
|
-
|
|
91
|
-
/* git_cred_default */
|
|
92
|
-
GIT_CREDTYPE_DEFAULT = (1u << 3),
|
|
93
|
-
|
|
94
|
-
/* git_cred_ssh_interactive */
|
|
95
|
-
GIT_CREDTYPE_SSH_INTERACTIVE = (1u << 4),
|
|
96
|
-
|
|
97
|
-
/**
|
|
98
|
-
* Username-only information
|
|
99
|
-
*
|
|
100
|
-
* If the SSH transport does not know which username to use,
|
|
101
|
-
* it will ask via this credential type.
|
|
102
|
-
*/
|
|
103
|
-
GIT_CREDTYPE_USERNAME = (1u << 5),
|
|
104
|
-
|
|
105
|
-
/**
|
|
106
|
-
* Credentials read from memory.
|
|
107
|
-
*
|
|
108
|
-
* Only available for libssh2+OpenSSL for now.
|
|
109
|
-
*/
|
|
110
|
-
GIT_CREDTYPE_SSH_MEMORY = (1u << 6),
|
|
111
|
-
} git_credtype_t;
|
|
112
|
-
|
|
113
|
-
/* The base structure for all credential types */
|
|
114
|
-
typedef struct git_cred git_cred;
|
|
115
|
-
|
|
116
|
-
struct git_cred {
|
|
117
|
-
git_credtype_t credtype;
|
|
118
|
-
void (*free)(git_cred *cred);
|
|
119
|
-
};
|
|
120
|
-
|
|
121
|
-
/** A plaintext username and password */
|
|
122
|
-
typedef struct {
|
|
123
|
-
git_cred parent;
|
|
124
|
-
char *username;
|
|
125
|
-
char *password;
|
|
126
|
-
} git_cred_userpass_plaintext;
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
/*
|
|
130
|
-
* If the user hasn't included libssh2.h before git2.h, we need to
|
|
131
|
-
* define a few types for the callback signatures.
|
|
132
|
-
*/
|
|
133
|
-
#ifndef LIBSSH2_VERSION
|
|
134
|
-
typedef struct _LIBSSH2_SESSION LIBSSH2_SESSION;
|
|
135
|
-
typedef struct _LIBSSH2_USERAUTH_KBDINT_PROMPT LIBSSH2_USERAUTH_KBDINT_PROMPT;
|
|
136
|
-
typedef struct _LIBSSH2_USERAUTH_KBDINT_RESPONSE LIBSSH2_USERAUTH_KBDINT_RESPONSE;
|
|
137
|
-
#endif
|
|
138
|
-
|
|
139
|
-
typedef int (*git_cred_sign_callback)(LIBSSH2_SESSION *session, unsigned char **sig, size_t *sig_len, const unsigned char *data, size_t data_len, void **abstract);
|
|
140
|
-
typedef void (*git_cred_ssh_interactive_callback)(const char* name, int name_len, const char* instruction, int instruction_len, int num_prompts, const LIBSSH2_USERAUTH_KBDINT_PROMPT* prompts, LIBSSH2_USERAUTH_KBDINT_RESPONSE* responses, void **abstract);
|
|
141
|
-
|
|
142
|
-
/**
|
|
143
|
-
* A ssh key from disk
|
|
144
|
-
*/
|
|
145
|
-
typedef struct git_cred_ssh_key {
|
|
146
|
-
git_cred parent;
|
|
147
|
-
char *username;
|
|
148
|
-
char *publickey;
|
|
149
|
-
char *privatekey;
|
|
150
|
-
char *passphrase;
|
|
151
|
-
} git_cred_ssh_key;
|
|
152
|
-
|
|
153
|
-
/**
|
|
154
|
-
* Keyboard-interactive based ssh authentication
|
|
155
|
-
*/
|
|
156
|
-
typedef struct git_cred_ssh_interactive {
|
|
157
|
-
git_cred parent;
|
|
158
|
-
char *username;
|
|
159
|
-
git_cred_ssh_interactive_callback prompt_callback;
|
|
160
|
-
void *payload;
|
|
161
|
-
} git_cred_ssh_interactive;
|
|
162
|
-
|
|
163
|
-
/**
|
|
164
|
-
* A key with a custom signature function
|
|
165
|
-
*/
|
|
166
|
-
typedef struct git_cred_ssh_custom {
|
|
167
|
-
git_cred parent;
|
|
168
|
-
char *username;
|
|
169
|
-
char *publickey;
|
|
170
|
-
size_t publickey_len;
|
|
171
|
-
git_cred_sign_callback sign_callback;
|
|
172
|
-
void *payload;
|
|
173
|
-
} git_cred_ssh_custom;
|
|
174
|
-
|
|
175
|
-
/** A key for NTLM/Kerberos "default" credentials */
|
|
176
|
-
typedef struct git_cred git_cred_default;
|
|
177
|
-
|
|
178
|
-
/** Username-only credential information */
|
|
179
|
-
typedef struct git_cred_username {
|
|
180
|
-
git_cred parent;
|
|
181
|
-
char username[1];
|
|
182
|
-
} git_cred_username;
|
|
183
|
-
|
|
184
|
-
/**
|
|
185
|
-
* Check whether a credential object contains username information.
|
|
26
|
+
* Callback for messages recieved by the transport.
|
|
186
27
|
*
|
|
187
|
-
*
|
|
188
|
-
* @return 1 if the credential object has non-NULL username, 0 otherwise
|
|
189
|
-
*/
|
|
190
|
-
GIT_EXTERN(int) git_cred_has_username(git_cred *cred);
|
|
191
|
-
|
|
192
|
-
/**
|
|
193
|
-
* Create a new plain-text username and password credential object.
|
|
194
|
-
* The supplied credential parameter will be internally duplicated.
|
|
195
|
-
*
|
|
196
|
-
* @param out The newly created credential object.
|
|
197
|
-
* @param username The username of the credential.
|
|
198
|
-
* @param password The password of the credential.
|
|
199
|
-
* @return 0 for success or an error code for failure
|
|
200
|
-
*/
|
|
201
|
-
GIT_EXTERN(int) git_cred_userpass_plaintext_new(
|
|
202
|
-
git_cred **out,
|
|
203
|
-
const char *username,
|
|
204
|
-
const char *password);
|
|
205
|
-
|
|
206
|
-
/**
|
|
207
|
-
* Create a new passphrase-protected ssh key credential object.
|
|
208
|
-
* The supplied credential parameter will be internally duplicated.
|
|
209
|
-
*
|
|
210
|
-
* @param out The newly created credential object.
|
|
211
|
-
* @param username username to use to authenticate
|
|
212
|
-
* @param publickey The path to the public key of the credential.
|
|
213
|
-
* @param privatekey The path to the private key of the credential.
|
|
214
|
-
* @param passphrase The passphrase of the credential.
|
|
215
|
-
* @return 0 for success or an error code for failure
|
|
216
|
-
*/
|
|
217
|
-
GIT_EXTERN(int) git_cred_ssh_key_new(
|
|
218
|
-
git_cred **out,
|
|
219
|
-
const char *username,
|
|
220
|
-
const char *publickey,
|
|
221
|
-
const char *privatekey,
|
|
222
|
-
const char *passphrase);
|
|
223
|
-
|
|
224
|
-
/**
|
|
225
|
-
* Create a new ssh keyboard-interactive based credential object.
|
|
226
|
-
* The supplied credential parameter will be internally duplicated.
|
|
227
|
-
*
|
|
228
|
-
* @param username Username to use to authenticate.
|
|
229
|
-
* @param prompt_callback The callback method used for prompts.
|
|
230
|
-
* @param payload Additional data to pass to the callback.
|
|
231
|
-
* @return 0 for success or an error code for failure.
|
|
232
|
-
*/
|
|
233
|
-
GIT_EXTERN(int) git_cred_ssh_interactive_new(
|
|
234
|
-
git_cred **out,
|
|
235
|
-
const char *username,
|
|
236
|
-
git_cred_ssh_interactive_callback prompt_callback,
|
|
237
|
-
void *payload);
|
|
238
|
-
|
|
239
|
-
/**
|
|
240
|
-
* Create a new ssh key credential object used for querying an ssh-agent.
|
|
241
|
-
* The supplied credential parameter will be internally duplicated.
|
|
242
|
-
*
|
|
243
|
-
* @param out The newly created credential object.
|
|
244
|
-
* @param username username to use to authenticate
|
|
245
|
-
* @return 0 for success or an error code for failure
|
|
246
|
-
*/
|
|
247
|
-
GIT_EXTERN(int) git_cred_ssh_key_from_agent(
|
|
248
|
-
git_cred **out,
|
|
249
|
-
const char *username);
|
|
250
|
-
|
|
251
|
-
/**
|
|
252
|
-
* Create an ssh key credential with a custom signing function.
|
|
253
|
-
*
|
|
254
|
-
* This lets you use your own function to sign the challenge.
|
|
255
|
-
*
|
|
256
|
-
* This function and its credential type is provided for completeness
|
|
257
|
-
* and wraps `libssh2_userauth_publickey()`, which is undocumented.
|
|
258
|
-
*
|
|
259
|
-
* The supplied credential parameter will be internally duplicated.
|
|
260
|
-
*
|
|
261
|
-
* @param out The newly created credential object.
|
|
262
|
-
* @param username username to use to authenticate
|
|
263
|
-
* @param publickey The bytes of the public key.
|
|
264
|
-
* @param publickey_len The length of the public key in bytes.
|
|
265
|
-
* @param sign_callback The callback method to sign the data during the challenge.
|
|
266
|
-
* @param payload Additional data to pass to the callback.
|
|
267
|
-
* @return 0 for success or an error code for failure
|
|
268
|
-
*/
|
|
269
|
-
GIT_EXTERN(int) git_cred_ssh_custom_new(
|
|
270
|
-
git_cred **out,
|
|
271
|
-
const char *username,
|
|
272
|
-
const char *publickey,
|
|
273
|
-
size_t publickey_len,
|
|
274
|
-
git_cred_sign_callback sign_callback,
|
|
275
|
-
void *payload);
|
|
276
|
-
|
|
277
|
-
/**
|
|
278
|
-
* Create a "default" credential usable for Negotiate mechanisms like NTLM
|
|
279
|
-
* or Kerberos authentication.
|
|
280
|
-
*
|
|
281
|
-
* @return 0 for success or an error code for failure
|
|
282
|
-
*/
|
|
283
|
-
GIT_EXTERN(int) git_cred_default_new(git_cred **out);
|
|
284
|
-
|
|
285
|
-
/**
|
|
286
|
-
* Create a credential to specify a username.
|
|
287
|
-
*
|
|
288
|
-
* This is used with ssh authentication to query for the username if
|
|
289
|
-
* none is specified in the url.
|
|
290
|
-
*/
|
|
291
|
-
GIT_EXTERN(int) git_cred_username_new(git_cred **cred, const char *username);
|
|
292
|
-
|
|
293
|
-
/**
|
|
294
|
-
* Create a new ssh key credential object reading the keys from memory.
|
|
28
|
+
* Return a negative value to cancel the network operation.
|
|
295
29
|
*
|
|
296
|
-
* @param
|
|
297
|
-
* @param
|
|
298
|
-
* @param
|
|
299
|
-
* @param privatekey The private key of the credential.
|
|
300
|
-
* @param passphrase The passphrase of the credential.
|
|
301
|
-
* @return 0 for success or an error code for failure
|
|
30
|
+
* @param str The message from the transport
|
|
31
|
+
* @param len The length of the message
|
|
32
|
+
* @param payload Payload provided by the caller
|
|
302
33
|
*/
|
|
303
|
-
|
|
304
|
-
git_cred **out,
|
|
305
|
-
const char *username,
|
|
306
|
-
const char *publickey,
|
|
307
|
-
const char *privatekey,
|
|
308
|
-
const char *passphrase);
|
|
34
|
+
typedef int GIT_CALLBACK(git_transport_message_cb)(const char *str, int len, void *payload);
|
|
309
35
|
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
* Free a credential.
|
|
313
|
-
*
|
|
314
|
-
* This is only necessary if you own the object; that is, if you are a
|
|
315
|
-
* transport.
|
|
316
|
-
*
|
|
317
|
-
* @param cred the object to free
|
|
318
|
-
*/
|
|
319
|
-
GIT_EXTERN(void) git_cred_free(git_cred *cred);
|
|
320
|
-
|
|
321
|
-
/**
|
|
322
|
-
* Signature of a function which acquires a credential object.
|
|
323
|
-
*
|
|
324
|
-
* @param cred The newly created credential object.
|
|
325
|
-
* @param url The resource for which we are demanding a credential.
|
|
326
|
-
* @param username_from_url The username that was embedded in a "user\@host"
|
|
327
|
-
* remote url, or NULL if not included.
|
|
328
|
-
* @param allowed_types A bitmask stating which cred types are OK to return.
|
|
329
|
-
* @param payload The payload provided when specifying this callback.
|
|
330
|
-
* @return 0 for success, < 0 to indicate an error, > 0 to indicate
|
|
331
|
-
* no credential was acquired
|
|
332
|
-
*/
|
|
333
|
-
typedef int (*git_cred_acquire_cb)(
|
|
334
|
-
git_cred **cred,
|
|
335
|
-
const char *url,
|
|
336
|
-
const char *username_from_url,
|
|
337
|
-
unsigned int allowed_types,
|
|
338
|
-
void *payload);
|
|
36
|
+
/** Signature of a function which creates a transport */
|
|
37
|
+
typedef int GIT_CALLBACK(git_transport_cb)(git_transport **out, git_remote *owner, void *param);
|
|
339
38
|
|
|
340
39
|
/** @} */
|
|
341
40
|
GIT_END_DECL
|
|
41
|
+
|
|
342
42
|
#endif
|
|
@@ -189,7 +189,7 @@ GIT_EXTERN(const git_oid *) git_tree_entry_id(const git_tree_entry *entry);
|
|
|
189
189
|
* @param entry a tree entry
|
|
190
190
|
* @return the type of the pointed object
|
|
191
191
|
*/
|
|
192
|
-
GIT_EXTERN(
|
|
192
|
+
GIT_EXTERN(git_object_t) git_tree_entry_type(const git_tree_entry *entry);
|
|
193
193
|
|
|
194
194
|
/**
|
|
195
195
|
* Get the UNIX file attributes of a tree entry
|
|
@@ -267,7 +267,7 @@ GIT_EXTERN(void) git_treebuilder_clear(git_treebuilder *bld);
|
|
|
267
267
|
* @param bld a previously loaded treebuilder.
|
|
268
268
|
* @return the number of entries in the treebuilder
|
|
269
269
|
*/
|
|
270
|
-
GIT_EXTERN(
|
|
270
|
+
GIT_EXTERN(size_t) git_treebuilder_entrycount(git_treebuilder *bld);
|
|
271
271
|
|
|
272
272
|
/**
|
|
273
273
|
* Free a tree builder
|
|
@@ -344,7 +344,7 @@ GIT_EXTERN(int) git_treebuilder_remove(
|
|
|
344
344
|
* entry should be left alone and any non-zero value meaning that the
|
|
345
345
|
* entry should be removed from the treebuilder list (i.e. filtered out).
|
|
346
346
|
*/
|
|
347
|
-
typedef int (
|
|
347
|
+
typedef int GIT_CALLBACK(git_treebuilder_filter_cb)(
|
|
348
348
|
const git_tree_entry *entry, void *payload);
|
|
349
349
|
|
|
350
350
|
/**
|
|
@@ -391,7 +391,7 @@ GIT_EXTERN(int) git_treebuilder_write_with_buffer(
|
|
|
391
391
|
git_oid *oid, git_treebuilder *bld, git_buf *tree);
|
|
392
392
|
|
|
393
393
|
/** Callback for the tree traversal method */
|
|
394
|
-
typedef int (
|
|
394
|
+
typedef int GIT_CALLBACK(git_treewalk_cb)(
|
|
395
395
|
const char *root, const git_tree_entry *entry, void *payload);
|
|
396
396
|
|
|
397
397
|
/** Tree traversal modes */
|
|
@@ -59,26 +59,27 @@ typedef __haiku_std_int64 git_time_t;
|
|
|
59
59
|
* app, even though /we/ define _FILE_OFFSET_BITS=64.
|
|
60
60
|
*/
|
|
61
61
|
typedef int64_t git_off_t;
|
|
62
|
-
typedef int64_t git_time_t;
|
|
62
|
+
typedef int64_t git_time_t; /**< time in seconds from epoch */
|
|
63
63
|
|
|
64
64
|
#endif
|
|
65
65
|
|
|
66
|
+
/** The maximum size of an object */
|
|
67
|
+
typedef uint64_t git_object_size_t;
|
|
68
|
+
|
|
66
69
|
#include "buffer.h"
|
|
67
70
|
#include "oid.h"
|
|
68
71
|
|
|
69
72
|
/** Basic type (loose or packed) of any Git object. */
|
|
70
73
|
typedef enum {
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
GIT_OBJ_REF_DELTA = 7, /**< A delta, base is given by object id. */
|
|
81
|
-
} git_otype;
|
|
74
|
+
GIT_OBJECT_ANY = -2, /**< Object can be any of the following */
|
|
75
|
+
GIT_OBJECT_INVALID = -1, /**< Object is invalid. */
|
|
76
|
+
GIT_OBJECT_COMMIT = 1, /**< A commit object. */
|
|
77
|
+
GIT_OBJECT_TREE = 2, /**< A tree (directory listing) object. */
|
|
78
|
+
GIT_OBJECT_BLOB = 3, /**< A file revision object. */
|
|
79
|
+
GIT_OBJECT_TAG = 4, /**< An annotated tag object. */
|
|
80
|
+
GIT_OBJECT_OFS_DELTA = 6, /**< A delta, base is given by an offset. */
|
|
81
|
+
GIT_OBJECT_REF_DELTA = 7, /**< A delta, base is given by object id. */
|
|
82
|
+
} git_object_t;
|
|
82
83
|
|
|
83
84
|
/** An open object database handle. */
|
|
84
85
|
typedef struct git_odb git_odb;
|
|
@@ -137,6 +138,9 @@ typedef struct git_treebuilder git_treebuilder;
|
|
|
137
138
|
/** Memory representation of an index file. */
|
|
138
139
|
typedef struct git_index git_index;
|
|
139
140
|
|
|
141
|
+
/** An iterator for entries in the index. */
|
|
142
|
+
typedef struct git_index_iterator git_index_iterator;
|
|
143
|
+
|
|
140
144
|
/** An iterator for conflicts in the index. */
|
|
141
145
|
typedef struct git_index_conflict_iterator git_index_conflict_iterator;
|
|
142
146
|
|
|
@@ -192,11 +196,11 @@ typedef struct git_rebase git_rebase;
|
|
|
192
196
|
|
|
193
197
|
/** Basic type of any Git reference. */
|
|
194
198
|
typedef enum {
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
}
|
|
199
|
+
GIT_REFERENCE_INVALID = 0, /**< Invalid reference */
|
|
200
|
+
GIT_REFERENCE_DIRECT = 1, /**< A reference that points at an object id */
|
|
201
|
+
GIT_REFERENCE_SYMBOLIC = 2, /**< A reference that points at another reference */
|
|
202
|
+
GIT_REFERENCE_ALL = GIT_REFERENCE_DIRECT | GIT_REFERENCE_SYMBOLIC,
|
|
203
|
+
} git_reference_t;
|
|
200
204
|
|
|
201
205
|
/** Basic type of any Git branch. */
|
|
202
206
|
typedef enum {
|
|
@@ -243,95 +247,10 @@ typedef struct git_push git_push;
|
|
|
243
247
|
typedef struct git_remote_head git_remote_head;
|
|
244
248
|
typedef struct git_remote_callbacks git_remote_callbacks;
|
|
245
249
|
|
|
246
|
-
/**
|
|
247
|
-
* This is passed as the first argument to the callback to allow the
|
|
248
|
-
* user to see the progress.
|
|
249
|
-
*
|
|
250
|
-
* - total_objects: number of objects in the packfile being downloaded
|
|
251
|
-
* - indexed_objects: received objects that have been hashed
|
|
252
|
-
* - received_objects: objects which have been downloaded
|
|
253
|
-
* - local_objects: locally-available objects that have been injected
|
|
254
|
-
* in order to fix a thin pack.
|
|
255
|
-
* - received-bytes: size of the packfile received up to now
|
|
256
|
-
*/
|
|
257
|
-
typedef struct git_transfer_progress {
|
|
258
|
-
unsigned int total_objects;
|
|
259
|
-
unsigned int indexed_objects;
|
|
260
|
-
unsigned int received_objects;
|
|
261
|
-
unsigned int local_objects;
|
|
262
|
-
unsigned int total_deltas;
|
|
263
|
-
unsigned int indexed_deltas;
|
|
264
|
-
size_t received_bytes;
|
|
265
|
-
} git_transfer_progress;
|
|
266
|
-
|
|
267
|
-
/**
|
|
268
|
-
* Type for progress callbacks during indexing. Return a value less than zero
|
|
269
|
-
* to cancel the transfer.
|
|
270
|
-
*
|
|
271
|
-
* @param stats Structure containing information about the state of the transfer
|
|
272
|
-
* @param payload Payload provided by caller
|
|
273
|
-
*/
|
|
274
|
-
typedef int (*git_transfer_progress_cb)(const git_transfer_progress *stats, void *payload);
|
|
275
|
-
|
|
276
|
-
/**
|
|
277
|
-
* Type for messages delivered by the transport. Return a negative value
|
|
278
|
-
* to cancel the network operation.
|
|
279
|
-
*
|
|
280
|
-
* @param str The message from the transport
|
|
281
|
-
* @param len The length of the message
|
|
282
|
-
* @param payload Payload provided by the caller
|
|
283
|
-
*/
|
|
284
|
-
typedef int (*git_transport_message_cb)(const char *str, int len, void *payload);
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
/**
|
|
288
|
-
* Type of host certificate structure that is passed to the check callback
|
|
289
|
-
*/
|
|
290
|
-
typedef enum git_cert_t {
|
|
291
|
-
/**
|
|
292
|
-
* No information about the certificate is available. This may
|
|
293
|
-
* happen when using curl.
|
|
294
|
-
*/
|
|
295
|
-
GIT_CERT_NONE,
|
|
296
|
-
/**
|
|
297
|
-
* The `data` argument to the callback will be a pointer to
|
|
298
|
-
* the DER-encoded data.
|
|
299
|
-
*/
|
|
300
|
-
GIT_CERT_X509,
|
|
301
|
-
/**
|
|
302
|
-
* The `data` argument to the callback will be a pointer to a
|
|
303
|
-
* `git_cert_hostkey` structure.
|
|
304
|
-
*/
|
|
305
|
-
GIT_CERT_HOSTKEY_LIBSSH2,
|
|
306
|
-
/**
|
|
307
|
-
* The `data` argument to the callback will be a pointer to a
|
|
308
|
-
* `git_strarray` with `name:content` strings containing
|
|
309
|
-
* information about the certificate. This is used when using
|
|
310
|
-
* curl.
|
|
311
|
-
*/
|
|
312
|
-
GIT_CERT_STRARRAY,
|
|
313
|
-
} git_cert_t;
|
|
314
|
-
|
|
315
250
|
/**
|
|
316
251
|
* Parent type for `git_cert_hostkey` and `git_cert_x509`.
|
|
317
252
|
*/
|
|
318
|
-
typedef struct
|
|
319
|
-
/**
|
|
320
|
-
* Type of certificate. A `GIT_CERT_` value.
|
|
321
|
-
*/
|
|
322
|
-
git_cert_t cert_type;
|
|
323
|
-
} git_cert;
|
|
324
|
-
|
|
325
|
-
/**
|
|
326
|
-
* Callback for the user's custom certificate checks.
|
|
327
|
-
*
|
|
328
|
-
* @param cert The host certificate
|
|
329
|
-
* @param valid Whether the libgit2 checks (OpenSSL or WinHTTP) think
|
|
330
|
-
* this certificate is valid
|
|
331
|
-
* @param host Hostname of the host libgit2 connected to
|
|
332
|
-
* @param payload Payload provided by the caller
|
|
333
|
-
*/
|
|
334
|
-
typedef int (*git_transport_certificate_check_cb)(git_cert *cert, int valid, const char *host, void *payload);
|
|
253
|
+
typedef struct git_cert git_cert;
|
|
335
254
|
|
|
336
255
|
/**
|
|
337
256
|
* Opaque structure representing a submodule.
|
|
@@ -429,9 +348,9 @@ typedef struct git_writestream git_writestream;
|
|
|
429
348
|
|
|
430
349
|
/** A type to write in a streaming fashion, for example, for filters. */
|
|
431
350
|
struct git_writestream {
|
|
432
|
-
int (
|
|
433
|
-
int (
|
|
434
|
-
void (
|
|
351
|
+
int GIT_CALLBACK(write)(git_writestream *stream, const char *buffer, size_t len);
|
|
352
|
+
int GIT_CALLBACK(close)(git_writestream *stream);
|
|
353
|
+
void GIT_CALLBACK(free)(git_writestream *stream);
|
|
435
354
|
};
|
|
436
355
|
|
|
437
356
|
/** Representation of .mailmap file state. */
|
|
@@ -7,12 +7,12 @@
|
|
|
7
7
|
#ifndef INCLUDE_git_version_h__
|
|
8
8
|
#define INCLUDE_git_version_h__
|
|
9
9
|
|
|
10
|
-
#define LIBGIT2_VERSION "0.
|
|
10
|
+
#define LIBGIT2_VERSION "0.28.0"
|
|
11
11
|
#define LIBGIT2_VER_MAJOR 0
|
|
12
|
-
#define LIBGIT2_VER_MINOR
|
|
12
|
+
#define LIBGIT2_VER_MINOR 28
|
|
13
13
|
#define LIBGIT2_VER_REVISION 0
|
|
14
14
|
#define LIBGIT2_VER_PATCH 0
|
|
15
15
|
|
|
16
|
-
#define LIBGIT2_SOVERSION
|
|
16
|
+
#define LIBGIT2_SOVERSION 28
|
|
17
17
|
|
|
18
18
|
#endif
|
|
@@ -78,7 +78,7 @@ GIT_EXTERN(int) git_worktree_validate(const git_worktree *wt);
|
|
|
78
78
|
* Worktree add options structure
|
|
79
79
|
*
|
|
80
80
|
* Initialize with `GIT_WORKTREE_ADD_OPTIONS_INIT`. Alternatively, you can
|
|
81
|
-
* use `
|
|
81
|
+
* use `git_worktree_add_options_init`.
|
|
82
82
|
*
|
|
83
83
|
*/
|
|
84
84
|
typedef struct git_worktree_add_options {
|
|
@@ -101,7 +101,7 @@ typedef struct git_worktree_add_options {
|
|
|
101
101
|
* @param version The struct version; pass `GIT_WORKTREE_ADD_OPTIONS_VERSION`.
|
|
102
102
|
* @return Zero on success; -1 on failure.
|
|
103
103
|
*/
|
|
104
|
-
int
|
|
104
|
+
GIT_EXTERN(int) git_worktree_add_options_init(git_worktree_add_options *opts,
|
|
105
105
|
unsigned int version);
|
|
106
106
|
|
|
107
107
|
/**
|
|
@@ -174,7 +174,7 @@ GIT_EXTERN(const char *) git_worktree_name(const git_worktree *wt);
|
|
|
174
174
|
* is valid for the lifetime of the git_worktree.
|
|
175
175
|
*/
|
|
176
176
|
GIT_EXTERN(const char *) git_worktree_path(const git_worktree *wt);
|
|
177
|
-
|
|
177
|
+
|
|
178
178
|
/**
|
|
179
179
|
* Flags which can be passed to git_worktree_prune to alter its
|
|
180
180
|
* behavior.
|
|
@@ -192,7 +192,7 @@ typedef enum {
|
|
|
192
192
|
* Worktree prune options structure
|
|
193
193
|
*
|
|
194
194
|
* Initialize with `GIT_WORKTREE_PRUNE_OPTIONS_INIT`. Alternatively, you can
|
|
195
|
-
* use `
|
|
195
|
+
* use `git_worktree_prune_options_init`.
|
|
196
196
|
*
|
|
197
197
|
*/
|
|
198
198
|
typedef struct git_worktree_prune_options {
|
|
@@ -214,7 +214,7 @@ typedef struct git_worktree_prune_options {
|
|
|
214
214
|
* @param version The struct version; pass `GIT_WORKTREE_PRUNE_OPTIONS_VERSION`.
|
|
215
215
|
* @return Zero on success; -1 on failure.
|
|
216
216
|
*/
|
|
217
|
-
GIT_EXTERN(int)
|
|
217
|
+
GIT_EXTERN(int) git_worktree_prune_options_init(
|
|
218
218
|
git_worktree_prune_options *opts,
|
|
219
219
|
unsigned int version);
|
|
220
220
|
|
|
@@ -9,17 +9,21 @@
|
|
|
9
9
|
#define INCLUDE_git_git_h__
|
|
10
10
|
|
|
11
11
|
#include "git2/annotated_commit.h"
|
|
12
|
+
#include "git2/apply.h"
|
|
12
13
|
#include "git2/attr.h"
|
|
13
14
|
#include "git2/blob.h"
|
|
14
15
|
#include "git2/blame.h"
|
|
15
16
|
#include "git2/branch.h"
|
|
16
17
|
#include "git2/buffer.h"
|
|
18
|
+
#include "git2/cert.h"
|
|
17
19
|
#include "git2/checkout.h"
|
|
18
20
|
#include "git2/cherrypick.h"
|
|
19
21
|
#include "git2/clone.h"
|
|
20
22
|
#include "git2/commit.h"
|
|
21
23
|
#include "git2/common.h"
|
|
22
24
|
#include "git2/config.h"
|
|
25
|
+
#include "git2/cred.h"
|
|
26
|
+
#include "git2/deprecated.h"
|
|
23
27
|
#include "git2/describe.h"
|
|
24
28
|
#include "git2/diff.h"
|
|
25
29
|
#include "git2/errors.h"
|