rugged 0.27.9 → 0.27.10
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/rugged/version.rb +1 -1
- data/vendor/libgit2/AUTHORS +1 -0
- data/vendor/libgit2/CMakeLists.txt +98 -54
- data/vendor/libgit2/COPYING +28 -0
- data/vendor/libgit2/cmake/Modules/AddCFlagIfSupported.cmake +15 -1
- 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/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/FindmbedTLS.cmake +93 -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/CMakeLists.txt +2 -0
- data/vendor/libgit2/deps/http-parser/{LICENSE-MIT → COPYING} +0 -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.h +5 -0
- 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 +38 -20
- data/vendor/libgit2/include/git2/blame.h +42 -25
- data/vendor/libgit2/include/git2/blob.h +45 -13
- data/vendor/libgit2/include/git2/branch.h +1 -1
- data/vendor/libgit2/include/git2/buffer.h +22 -16
- data/vendor/libgit2/include/git2/cert.h +135 -0
- data/vendor/libgit2/include/git2/checkout.h +65 -32
- data/vendor/libgit2/include/git2/cherrypick.h +9 -7
- data/vendor/libgit2/include/git2/clone.h +12 -10
- data/vendor/libgit2/include/git2/commit.h +53 -3
- data/vendor/libgit2/include/git2/common.h +60 -8
- data/vendor/libgit2/include/git2/config.h +30 -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 +32 -9
- data/vendor/libgit2/include/git2/diff.h +208 -156
- data/vendor/libgit2/include/git2/errors.h +54 -46
- data/vendor/libgit2/include/git2/filter.h +8 -0
- data/vendor/libgit2/include/git2/ignore.h +2 -2
- data/vendor/libgit2/include/git2/index.h +74 -52
- data/vendor/libgit2/include/git2/indexer.h +76 -6
- data/vendor/libgit2/include/git2/mailmap.h +115 -0
- data/vendor/libgit2/include/git2/merge.h +35 -18
- 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 +14 -8
- data/vendor/libgit2/include/git2/rebase.h +53 -6
- data/vendor/libgit2/include/git2/refs.h +33 -15
- data/vendor/libgit2/include/git2/refspec.h +17 -0
- data/vendor/libgit2/include/git2/remote.h +123 -24
- data/vendor/libgit2/include/git2/repository.h +76 -39
- data/vendor/libgit2/include/git2/revert.h +6 -4
- 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 +15 -12
- data/vendor/libgit2/include/git2/status.h +33 -20
- data/vendor/libgit2/include/git2/submodule.h +30 -12
- data/vendor/libgit2/include/git2/sys/alloc.h +101 -0
- 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/index.h +3 -0
- data/vendor/libgit2/include/git2/sys/mempack.h +35 -35
- data/vendor/libgit2/include/git2/sys/merge.h +9 -4
- data/vendor/libgit2/include/git2/sys/odb_backend.h +66 -22
- data/vendor/libgit2/include/git2/sys/path.h +64 -0
- 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/transaction.h +1 -0
- 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 +33 -111
- data/vendor/libgit2/include/git2/version.h +4 -4
- data/vendor/libgit2/include/git2/worktree.h +48 -13
- data/vendor/libgit2/src/CMakeLists.txt +96 -164
- data/vendor/libgit2/src/alloc.c +43 -0
- data/vendor/libgit2/src/alloc.h +40 -0
- data/vendor/libgit2/src/allocators/stdalloc.c +119 -0
- data/vendor/libgit2/src/{streams/curl.h → allocators/stdalloc.h} +5 -5
- 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 +15 -8
- data/vendor/libgit2/src/apply.c +537 -31
- data/vendor/libgit2/src/apply.h +3 -1
- data/vendor/libgit2/src/array.h +2 -2
- data/vendor/libgit2/src/attr.c +81 -75
- data/vendor/libgit2/src/attr_file.c +207 -121
- data/vendor/libgit2/src/attr_file.h +9 -9
- data/vendor/libgit2/src/attrcache.c +51 -53
- data/vendor/libgit2/src/attrcache.h +2 -1
- data/vendor/libgit2/src/blame.c +47 -20
- data/vendor/libgit2/src/blame.h +2 -1
- data/vendor/libgit2/src/blame_git.c +37 -20
- data/vendor/libgit2/src/blob.c +128 -42
- data/vendor/libgit2/src/blob.h +19 -2
- data/vendor/libgit2/src/branch.c +67 -43
- data/vendor/libgit2/src/buf_text.c +7 -6
- data/vendor/libgit2/src/buffer.c +69 -57
- data/vendor/libgit2/src/buffer.h +1 -1
- 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 +109 -90
- data/vendor/libgit2/src/cherrypick.c +15 -9
- data/vendor/libgit2/src/clone.c +49 -27
- data/vendor/libgit2/src/clone.h +4 -0
- data/vendor/libgit2/src/commit.c +117 -49
- data/vendor/libgit2/src/commit.h +7 -0
- data/vendor/libgit2/src/commit_list.c +30 -78
- data/vendor/libgit2/src/commit_list.h +2 -2
- data/vendor/libgit2/src/common.h +27 -91
- data/vendor/libgit2/src/config.c +194 -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 +439 -753
- data/vendor/libgit2/src/config_mem.c +220 -0
- data/vendor/libgit2/src/config_parse.c +114 -63
- data/vendor/libgit2/src/config_parse.h +17 -16
- data/vendor/libgit2/src/config_snapshot.c +206 -0
- data/vendor/libgit2/src/crlf.c +219 -190
- data/vendor/libgit2/src/delta.c +25 -18
- data/vendor/libgit2/src/describe.c +42 -41
- data/vendor/libgit2/src/diff.c +53 -68
- data/vendor/libgit2/src/diff.h +2 -1
- data/vendor/libgit2/src/diff_driver.c +47 -49
- data/vendor/libgit2/src/diff_file.c +19 -17
- data/vendor/libgit2/src/diff_file.h +1 -1
- data/vendor/libgit2/src/diff_generate.c +162 -106
- 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 +42 -30
- data/vendor/libgit2/src/diff_stats.c +22 -7
- data/vendor/libgit2/src/diff_tform.c +16 -16
- data/vendor/libgit2/src/diff_xdiff.c +15 -3
- data/vendor/libgit2/src/errors.c +51 -39
- data/vendor/libgit2/src/errors.h +81 -0
- data/vendor/libgit2/src/features.h.in +11 -3
- data/vendor/libgit2/src/fetch.c +10 -5
- data/vendor/libgit2/src/fetchhead.c +17 -17
- data/vendor/libgit2/src/filebuf.c +32 -36
- data/vendor/libgit2/src/filebuf.h +2 -2
- data/vendor/libgit2/src/filter.c +46 -38
- data/vendor/libgit2/src/filter.h +0 -10
- data/vendor/libgit2/src/{fileops.c → futils.c} +80 -73
- data/vendor/libgit2/src/{fileops.h → futils.h} +6 -6
- data/vendor/libgit2/src/global.c +48 -63
- data/vendor/libgit2/src/global.h +0 -2
- data/vendor/libgit2/src/hash.c +61 -0
- data/vendor/libgit2/src/hash.h +20 -19
- data/vendor/libgit2/src/hash/sha1.h +38 -0
- 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/sha1/mbedtls.c +46 -0
- data/vendor/libgit2/src/hash/sha1/mbedtls.h +19 -0
- 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/{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
- 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/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 +43 -47
- data/vendor/libgit2/src/index.c +337 -232
- data/vendor/libgit2/src/index.h +17 -1
- data/vendor/libgit2/src/indexer.c +346 -175
- data/vendor/libgit2/src/integer.h +71 -26
- data/vendor/libgit2/src/iterator.c +142 -70
- data/vendor/libgit2/src/iterator.h +15 -0
- data/vendor/libgit2/src/khash.h +3 -1
- data/vendor/libgit2/src/mailmap.c +485 -0
- data/vendor/libgit2/src/mailmap.h +35 -0
- data/vendor/libgit2/src/map.h +1 -1
- data/vendor/libgit2/src/merge.c +144 -100
- 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 +16 -11
- 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 +116 -93
- data/vendor/libgit2/src/odb.h +8 -7
- data/vendor/libgit2/src/odb_loose.c +62 -55
- data/vendor/libgit2/src/odb_mempack.c +21 -34
- data/vendor/libgit2/src/odb_pack.c +18 -14
- 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 +88 -87
- data/vendor/libgit2/src/pack-objects.h +2 -8
- data/vendor/libgit2/src/pack.c +99 -101
- data/vendor/libgit2/src/pack.h +17 -19
- data/vendor/libgit2/src/parse.c +10 -0
- data/vendor/libgit2/src/parse.h +3 -3
- data/vendor/libgit2/src/patch.c +4 -4
- data/vendor/libgit2/src/patch_generate.c +20 -20
- data/vendor/libgit2/src/patch_parse.c +151 -63
- data/vendor/libgit2/src/path.c +169 -125
- data/vendor/libgit2/src/path.h +3 -71
- data/vendor/libgit2/src/pathspec.c +19 -19
- 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 +37 -31
- 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 +115 -59
- data/vendor/libgit2/src/refdb.c +15 -3
- data/vendor/libgit2/src/refdb_fs.c +381 -254
- data/vendor/libgit2/src/reflog.c +13 -15
- data/vendor/libgit2/src/refs.c +118 -88
- data/vendor/libgit2/src/refs.h +5 -3
- data/vendor/libgit2/src/refspec.c +56 -37
- data/vendor/libgit2/src/refspec.h +1 -1
- data/vendor/libgit2/src/regexp.c +221 -0
- data/vendor/libgit2/src/regexp.h +97 -0
- data/vendor/libgit2/src/remote.c +266 -215
- data/vendor/libgit2/src/remote.h +11 -2
- data/vendor/libgit2/src/repository.c +280 -225
- data/vendor/libgit2/src/repository.h +52 -40
- data/vendor/libgit2/src/reset.c +8 -8
- data/vendor/libgit2/src/revert.c +14 -9
- data/vendor/libgit2/src/revparse.c +47 -48
- data/vendor/libgit2/src/revwalk.c +120 -57
- data/vendor/libgit2/src/revwalk.h +22 -1
- data/vendor/libgit2/src/settings.c +47 -10
- data/vendor/libgit2/src/signature.c +11 -11
- data/vendor/libgit2/src/sortedcache.c +22 -36
- data/vendor/libgit2/src/sortedcache.h +1 -1
- data/vendor/libgit2/src/stash.c +125 -99
- data/vendor/libgit2/src/status.c +28 -22
- data/vendor/libgit2/src/stream.h +17 -2
- data/vendor/libgit2/src/streams/mbedtls.c +483 -0
- data/vendor/libgit2/src/streams/mbedtls.h +23 -0
- data/vendor/libgit2/src/streams/openssl.c +224 -114
- data/vendor/libgit2/src/streams/openssl.h +4 -108
- 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 +50 -19
- 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 +272 -216
- data/vendor/libgit2/src/submodule.h +1 -1
- data/vendor/libgit2/src/sysdir.c +29 -19
- data/vendor/libgit2/src/tag.c +41 -28
- data/vendor/libgit2/src/tag.h +2 -1
- data/vendor/libgit2/src/trace.c +2 -2
- data/vendor/libgit2/src/trace.h +3 -3
- data/vendor/libgit2/src/trailer.c +52 -38
- data/vendor/libgit2/src/transaction.c +30 -29
- data/vendor/libgit2/src/transport.c +5 -5
- data/vendor/libgit2/src/transports/auth.c +15 -11
- data/vendor/libgit2/src/transports/auth.h +10 -3
- data/vendor/libgit2/src/transports/auth_negotiate.c +33 -18
- 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 +26 -31
- data/vendor/libgit2/src/transports/http.c +881 -348
- data/vendor/libgit2/src/transports/http.h +2 -0
- data/vendor/libgit2/src/transports/local.c +35 -35
- data/vendor/libgit2/src/transports/smart.c +70 -47
- data/vendor/libgit2/src/transports/smart.h +3 -4
- data/vendor/libgit2/src/transports/smart_pkt.c +43 -40
- data/vendor/libgit2/src/transports/smart_protocol.c +96 -116
- data/vendor/libgit2/src/transports/ssh.c +77 -66
- data/vendor/libgit2/src/transports/winhttp.c +318 -314
- data/vendor/libgit2/src/tree-cache.c +19 -12
- data/vendor/libgit2/src/tree.c +103 -142
- data/vendor/libgit2/src/tree.h +1 -12
- 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 +70 -56
- data/vendor/libgit2/src/util.h +28 -156
- data/vendor/libgit2/src/vector.c +4 -4
- 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 +3 -3
- 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 +70 -45
- 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 +3 -2
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +26 -75
- 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 +95 -60
- data/vendor/libgit2/src/worktree.h +2 -0
- data/vendor/libgit2/src/xdiff/xdiffi.c +7 -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 +122 -33
- 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
@@ -37,34 +37,34 @@ extern bool git_repository__fsync_gitdir;
|
|
37
37
|
|
38
38
|
/** Cvar cache identifiers */
|
39
39
|
typedef enum {
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
}
|
40
|
+
GIT_CONFIGMAP_AUTO_CRLF = 0, /* core.autocrlf */
|
41
|
+
GIT_CONFIGMAP_EOL, /* core.eol */
|
42
|
+
GIT_CONFIGMAP_SYMLINKS, /* core.symlinks */
|
43
|
+
GIT_CONFIGMAP_IGNORECASE, /* core.ignorecase */
|
44
|
+
GIT_CONFIGMAP_FILEMODE, /* core.filemode */
|
45
|
+
GIT_CONFIGMAP_IGNORESTAT, /* core.ignorestat */
|
46
|
+
GIT_CONFIGMAP_TRUSTCTIME, /* core.trustctime */
|
47
|
+
GIT_CONFIGMAP_ABBREV, /* core.abbrev */
|
48
|
+
GIT_CONFIGMAP_PRECOMPOSE, /* core.precomposeunicode */
|
49
|
+
GIT_CONFIGMAP_SAFE_CRLF, /* core.safecrlf */
|
50
|
+
GIT_CONFIGMAP_LOGALLREFUPDATES, /* core.logallrefupdates */
|
51
|
+
GIT_CONFIGMAP_PROTECTHFS, /* core.protectHFS */
|
52
|
+
GIT_CONFIGMAP_PROTECTNTFS, /* core.protectNTFS */
|
53
|
+
GIT_CONFIGMAP_FSYNCOBJECTFILES, /* core.fsyncObjectFiles */
|
54
|
+
GIT_CONFIGMAP_CACHE_MAX
|
55
|
+
} git_configmap_item;
|
56
56
|
|
57
57
|
/**
|
58
|
-
*
|
58
|
+
* Configuration map value enumerations
|
59
59
|
*
|
60
|
-
* These are the values that are actually stored in the
|
61
|
-
* of their string equivalents. These values are internal and
|
62
|
-
* make sure that none of them is set to `-1`, since that is
|
63
|
-
* identifier for "not cached"
|
60
|
+
* These are the values that are actually stored in the configmap cache,
|
61
|
+
* instead of their string equivalents. These values are internal and
|
62
|
+
* symbolic; make sure that none of them is set to `-1`, since that is
|
63
|
+
* the unique identifier for "not cached"
|
64
64
|
*/
|
65
65
|
typedef enum {
|
66
66
|
/* The value hasn't been loaded from the cache yet */
|
67
|
-
|
67
|
+
GIT_CONFIGMAP_NOT_CACHED = -1,
|
68
68
|
|
69
69
|
/* core.safecrlf: false, 'fail', 'warn' */
|
70
70
|
GIT_SAFE_CRLF_FALSE = 0,
|
@@ -89,31 +89,34 @@ typedef enum {
|
|
89
89
|
GIT_EOL_DEFAULT = GIT_EOL_NATIVE,
|
90
90
|
|
91
91
|
/* core.symlinks: bool */
|
92
|
-
GIT_SYMLINKS_DEFAULT =
|
92
|
+
GIT_SYMLINKS_DEFAULT = GIT_CONFIGMAP_TRUE,
|
93
93
|
/* core.ignorecase */
|
94
|
-
GIT_IGNORECASE_DEFAULT =
|
94
|
+
GIT_IGNORECASE_DEFAULT = GIT_CONFIGMAP_FALSE,
|
95
95
|
/* core.filemode */
|
96
|
-
GIT_FILEMODE_DEFAULT =
|
96
|
+
GIT_FILEMODE_DEFAULT = GIT_CONFIGMAP_TRUE,
|
97
97
|
/* core.ignorestat */
|
98
|
-
GIT_IGNORESTAT_DEFAULT =
|
98
|
+
GIT_IGNORESTAT_DEFAULT = GIT_CONFIGMAP_FALSE,
|
99
99
|
/* core.trustctime */
|
100
|
-
GIT_TRUSTCTIME_DEFAULT =
|
100
|
+
GIT_TRUSTCTIME_DEFAULT = GIT_CONFIGMAP_TRUE,
|
101
101
|
/* core.abbrev */
|
102
102
|
GIT_ABBREV_DEFAULT = 7,
|
103
103
|
/* core.precomposeunicode */
|
104
|
-
GIT_PRECOMPOSE_DEFAULT =
|
104
|
+
GIT_PRECOMPOSE_DEFAULT = GIT_CONFIGMAP_FALSE,
|
105
105
|
/* core.safecrlf */
|
106
|
-
GIT_SAFE_CRLF_DEFAULT =
|
106
|
+
GIT_SAFE_CRLF_DEFAULT = GIT_CONFIGMAP_FALSE,
|
107
107
|
/* core.logallrefupdates */
|
108
|
+
GIT_LOGALLREFUPDATES_FALSE = GIT_CONFIGMAP_FALSE,
|
109
|
+
GIT_LOGALLREFUPDATES_TRUE = GIT_CONFIGMAP_TRUE,
|
108
110
|
GIT_LOGALLREFUPDATES_UNSET = 2,
|
111
|
+
GIT_LOGALLREFUPDATES_ALWAYS = 3,
|
109
112
|
GIT_LOGALLREFUPDATES_DEFAULT = GIT_LOGALLREFUPDATES_UNSET,
|
110
113
|
/* core.protectHFS */
|
111
|
-
GIT_PROTECTHFS_DEFAULT =
|
114
|
+
GIT_PROTECTHFS_DEFAULT = GIT_CONFIGMAP_FALSE,
|
112
115
|
/* core.protectNTFS */
|
113
|
-
GIT_PROTECTNTFS_DEFAULT =
|
116
|
+
GIT_PROTECTNTFS_DEFAULT = GIT_CONFIGMAP_TRUE,
|
114
117
|
/* core.fsyncObjectFiles */
|
115
|
-
GIT_FSYNCOBJECTFILES_DEFAULT =
|
116
|
-
}
|
118
|
+
GIT_FSYNCOBJECTFILES_DEFAULT = GIT_CONFIGMAP_FALSE,
|
119
|
+
} git_configmap_value;
|
117
120
|
|
118
121
|
/* internal repository init flags */
|
119
122
|
enum {
|
@@ -151,7 +154,7 @@ struct git_repository {
|
|
151
154
|
|
152
155
|
git_atomic attr_session_key;
|
153
156
|
|
154
|
-
|
157
|
+
git_configmap_value configmap_cache[GIT_CONFIGMAP_CACHE_MAX];
|
155
158
|
git_strmap *submodule_cache;
|
156
159
|
};
|
157
160
|
|
@@ -173,6 +176,13 @@ int git_repository_create_head(const char *git_dir, const char *ref_name);
|
|
173
176
|
*/
|
174
177
|
typedef int (*git_repository_foreach_head_cb)(git_repository *repo, const char *path, void *payload);
|
175
178
|
|
179
|
+
enum {
|
180
|
+
/* Skip enumeration of the main repository HEAD */
|
181
|
+
GIT_REPOSITORY_FOREACH_HEAD_SKIP_REPO = (1u << 0),
|
182
|
+
/* Skip enumeration of worktree HEADs */
|
183
|
+
GIT_REPOSITORY_FOREACH_HEAD_SKIP_WORKTREES = (1u << 1),
|
184
|
+
};
|
185
|
+
|
176
186
|
/*
|
177
187
|
* Iterate over repository and all worktree HEADs.
|
178
188
|
*
|
@@ -181,7 +191,9 @@ typedef int (*git_repository_foreach_head_cb)(git_repository *repo, const char *
|
|
181
191
|
* executed with the given payload. The return value equals the
|
182
192
|
* return value of the last executed callback function.
|
183
193
|
*/
|
184
|
-
int git_repository_foreach_head(git_repository *repo,
|
194
|
+
int git_repository_foreach_head(git_repository *repo,
|
195
|
+
git_repository_foreach_head_cb cb,
|
196
|
+
int flags, void *payload);
|
185
197
|
|
186
198
|
/*
|
187
199
|
* Weak pointers to repository internals.
|
@@ -196,13 +208,13 @@ int git_repository_refdb__weakptr(git_refdb **out, git_repository *repo);
|
|
196
208
|
int git_repository_index__weakptr(git_index **out, git_repository *repo);
|
197
209
|
|
198
210
|
/*
|
199
|
-
*
|
211
|
+
* Configuration map cache
|
200
212
|
*
|
201
213
|
* Efficient access to the most used config variables of a repository.
|
202
214
|
* The cache is cleared every time the config backend is replaced.
|
203
215
|
*/
|
204
|
-
int
|
205
|
-
void
|
216
|
+
int git_repository__configmap_lookup(int *out, git_repository *repo, git_configmap_item item);
|
217
|
+
void git_repository__configmap_lookup_cache_clear(git_repository *repo);
|
206
218
|
|
207
219
|
GIT_INLINE(int) git_repository__ensure_not_bare(
|
208
220
|
git_repository *repo,
|
@@ -211,8 +223,8 @@ GIT_INLINE(int) git_repository__ensure_not_bare(
|
|
211
223
|
if (!git_repository_is_bare(repo))
|
212
224
|
return 0;
|
213
225
|
|
214
|
-
|
215
|
-
|
226
|
+
git_error_set(
|
227
|
+
GIT_ERROR_REPOSITORY,
|
216
228
|
"cannot %s. This operation is not allowed against bare repositories.",
|
217
229
|
operation_name);
|
218
230
|
|
data/vendor/libgit2/src/reset.c
CHANGED
@@ -42,12 +42,12 @@ int git_reset_default(
|
|
42
42
|
|
43
43
|
if (target) {
|
44
44
|
if (git_object_owner(target) != repo) {
|
45
|
-
|
45
|
+
git_error_set(GIT_ERROR_OBJECT,
|
46
46
|
"%s_default - The given target does not belong to this repository.", ERROR_MSG);
|
47
47
|
return -1;
|
48
48
|
}
|
49
49
|
|
50
|
-
if ((error = git_object_peel(&commit, target,
|
50
|
+
if ((error = git_object_peel(&commit, target, GIT_OBJECT_COMMIT)) < 0 ||
|
51
51
|
(error = git_commit_tree(&tree, (git_commit *)commit)) < 0)
|
52
52
|
goto cleanup;
|
53
53
|
}
|
@@ -70,7 +70,7 @@ int git_reset_default(
|
|
70
70
|
error = git_index_conflict_remove(index, delta->old_file.path);
|
71
71
|
if (error < 0) {
|
72
72
|
if (delta->status == GIT_DELTA_ADDED && error == GIT_ENOTFOUND)
|
73
|
-
|
73
|
+
git_error_clear();
|
74
74
|
else
|
75
75
|
goto cleanup;
|
76
76
|
}
|
@@ -119,7 +119,7 @@ static int reset(
|
|
119
119
|
opts = *checkout_opts;
|
120
120
|
|
121
121
|
if (git_object_owner(target) != repo) {
|
122
|
-
|
122
|
+
git_error_set(GIT_ERROR_OBJECT,
|
123
123
|
"%s - The given target does not belong to this repository.", ERROR_MSG);
|
124
124
|
return -1;
|
125
125
|
}
|
@@ -129,7 +129,7 @@ static int reset(
|
|
129
129
|
reset_type == GIT_RESET_MIXED ? "reset mixed" : "reset hard")) < 0)
|
130
130
|
return error;
|
131
131
|
|
132
|
-
if ((error = git_object_peel(&commit, target,
|
132
|
+
if ((error = git_object_peel(&commit, target, GIT_OBJECT_COMMIT)) < 0 ||
|
133
133
|
(error = git_repository_index(&index, repo)) < 0 ||
|
134
134
|
(error = git_commit_tree(&tree, (git_commit *)commit)) < 0)
|
135
135
|
goto cleanup;
|
@@ -138,7 +138,7 @@ static int reset(
|
|
138
138
|
(git_repository_state(repo) == GIT_REPOSITORY_STATE_MERGE ||
|
139
139
|
git_index_has_conflicts(index)))
|
140
140
|
{
|
141
|
-
|
141
|
+
git_error_set(GIT_ERROR_OBJECT, "%s (soft) in the middle of a merge", ERROR_MSG);
|
142
142
|
error = GIT_EUNMERGED;
|
143
143
|
goto cleanup;
|
144
144
|
}
|
@@ -167,7 +167,7 @@ static int reset(
|
|
167
167
|
goto cleanup;
|
168
168
|
|
169
169
|
if ((error = git_repository_state_cleanup(repo)) < 0) {
|
170
|
-
|
170
|
+
git_error_set(GIT_ERROR_INDEX, "%s - failed to clean up merge data", ERROR_MSG);
|
171
171
|
goto cleanup;
|
172
172
|
}
|
173
173
|
}
|
@@ -176,7 +176,7 @@ cleanup:
|
|
176
176
|
git_object_free(commit);
|
177
177
|
git_index_free(index);
|
178
178
|
git_tree_free(tree);
|
179
|
-
|
179
|
+
git_buf_dispose(&log_message);
|
180
180
|
|
181
181
|
return error;
|
182
182
|
}
|
data/vendor/libgit2/src/revert.c
CHANGED
@@ -29,14 +29,14 @@ static int write_revert_head(
|
|
29
29
|
int error = 0;
|
30
30
|
|
31
31
|
if ((error = git_buf_joinpath(&file_path, repo->gitdir, GIT_REVERT_HEAD_FILE)) >= 0 &&
|
32
|
-
(error = git_filebuf_open(&file, file_path.ptr,
|
32
|
+
(error = git_filebuf_open(&file, file_path.ptr, GIT_FILEBUF_CREATE_LEADING_DIRS, GIT_REVERT_FILE_MODE)) >= 0 &&
|
33
33
|
(error = git_filebuf_printf(&file, "%s\n", commit_oidstr)) >= 0)
|
34
34
|
error = git_filebuf_commit(&file);
|
35
35
|
|
36
36
|
if (error < 0)
|
37
37
|
git_filebuf_cleanup(&file);
|
38
38
|
|
39
|
-
|
39
|
+
git_buf_dispose(&file_path);
|
40
40
|
|
41
41
|
return error;
|
42
42
|
}
|
@@ -51,7 +51,7 @@ static int write_merge_msg(
|
|
51
51
|
int error = 0;
|
52
52
|
|
53
53
|
if ((error = git_buf_joinpath(&file_path, repo->gitdir, GIT_MERGE_MSG_FILE)) < 0 ||
|
54
|
-
(error = git_filebuf_open(&file, file_path.ptr,
|
54
|
+
(error = git_filebuf_open(&file, file_path.ptr, GIT_FILEBUF_CREATE_LEADING_DIRS, GIT_REVERT_FILE_MODE)) < 0 ||
|
55
55
|
(error = git_filebuf_printf(&file, "Revert \"%s\"\n\nThis reverts commit %s.\n",
|
56
56
|
commit_msgline, commit_oidstr)) < 0)
|
57
57
|
goto cleanup;
|
@@ -62,7 +62,7 @@ cleanup:
|
|
62
62
|
if (error < 0)
|
63
63
|
git_filebuf_cleanup(&file);
|
64
64
|
|
65
|
-
|
65
|
+
git_buf_dispose(&file_path);
|
66
66
|
|
67
67
|
return error;
|
68
68
|
}
|
@@ -112,7 +112,7 @@ static int revert_seterr(git_commit *commit, const char *fmt)
|
|
112
112
|
git_oid_fmt(commit_oidstr, git_commit_id(commit));
|
113
113
|
commit_oidstr[GIT_OID_HEXSZ] = '\0';
|
114
114
|
|
115
|
-
|
115
|
+
git_error_set(GIT_ERROR_REVERT, fmt, commit_oidstr);
|
116
116
|
|
117
117
|
return -1;
|
118
118
|
}
|
@@ -182,7 +182,7 @@ int git_revert(
|
|
182
182
|
|
183
183
|
assert(repo && commit);
|
184
184
|
|
185
|
-
|
185
|
+
GIT_ERROR_CHECK_VERSION(given_opts, GIT_REVERT_OPTIONS_VERSION, "git_revert_options");
|
186
186
|
|
187
187
|
if ((error = git_repository__ensure_not_bare(repo, "revert")) < 0)
|
188
188
|
return error;
|
@@ -201,7 +201,7 @@ int git_revert(
|
|
201
201
|
(error = write_revert_head(repo, commit_oidstr)) < 0 ||
|
202
202
|
(error = write_merge_msg(repo, commit_oidstr, commit_msg)) < 0 ||
|
203
203
|
(error = git_repository_head(&our_ref, repo)) < 0 ||
|
204
|
-
(error = git_reference_peel((git_object **)&our_commit, our_ref,
|
204
|
+
(error = git_reference_peel((git_object **)&our_commit, our_ref, GIT_OBJECT_COMMIT)) < 0 ||
|
205
205
|
(error = git_revert_commit(&index, repo, commit, our_commit, opts.mainline, &opts.merge_opts)) < 0 ||
|
206
206
|
(error = git_merge__check_result(repo, index)) < 0 ||
|
207
207
|
(error = git_merge__append_conflicts_to_merge_msg(repo, index)) < 0 ||
|
@@ -219,14 +219,19 @@ done:
|
|
219
219
|
git_index_free(index);
|
220
220
|
git_commit_free(our_commit);
|
221
221
|
git_reference_free(our_ref);
|
222
|
-
|
222
|
+
git_buf_dispose(&their_label);
|
223
223
|
|
224
224
|
return error;
|
225
225
|
}
|
226
226
|
|
227
|
-
int
|
227
|
+
int git_revert_options_init(git_revert_options *opts, unsigned int version)
|
228
228
|
{
|
229
229
|
GIT_INIT_STRUCTURE_FROM_TEMPLATE(
|
230
230
|
opts, version, git_revert_options, GIT_REVERT_OPTIONS_INIT);
|
231
231
|
return 0;
|
232
232
|
}
|
233
|
+
|
234
|
+
int git_revert_init_options(git_revert_options *opts, unsigned int version)
|
235
|
+
{
|
236
|
+
return git_revert_options_init(opts, version);
|
237
|
+
}
|
@@ -7,11 +7,10 @@
|
|
7
7
|
|
8
8
|
#include "common.h"
|
9
9
|
|
10
|
-
#include <assert.h>
|
11
|
-
|
12
10
|
#include "buffer.h"
|
13
11
|
#include "tree.h"
|
14
12
|
#include "refdb.h"
|
13
|
+
#include "regexp.h"
|
15
14
|
|
16
15
|
#include "git2.h"
|
17
16
|
|
@@ -22,7 +21,7 @@ static int maybe_sha_or_abbrev(git_object** out, git_repository *repo, const cha
|
|
22
21
|
if (git_oid_fromstrn(&oid, spec, speclen) < 0)
|
23
22
|
return GIT_ENOTFOUND;
|
24
23
|
|
25
|
-
return git_object_lookup_prefix(out, repo, &oid, speclen,
|
24
|
+
return git_object_lookup_prefix(out, repo, &oid, speclen, GIT_OBJECT_ANY);
|
26
25
|
}
|
27
26
|
|
28
27
|
static int maybe_sha(git_object** out, git_repository *repo, const char *spec)
|
@@ -42,22 +41,20 @@ static int maybe_abbrev(git_object** out, git_repository *repo, const char *spec
|
|
42
41
|
return maybe_sha_or_abbrev(out, repo, spec, speclen);
|
43
42
|
}
|
44
43
|
|
45
|
-
static int build_regex(
|
44
|
+
static int build_regex(git_regexp *regex, const char *pattern)
|
46
45
|
{
|
47
46
|
int error;
|
48
47
|
|
49
48
|
if (*pattern == '\0') {
|
50
|
-
|
49
|
+
git_error_set(GIT_ERROR_REGEX, "empty pattern");
|
51
50
|
return GIT_EINVALIDSPEC;
|
52
51
|
}
|
53
52
|
|
54
|
-
error =
|
53
|
+
error = git_regexp_compile(regex, pattern, 0);
|
55
54
|
if (!error)
|
56
55
|
return 0;
|
57
56
|
|
58
|
-
|
59
|
-
|
60
|
-
regfree(regex);
|
57
|
+
git_regexp_dispose(regex);
|
61
58
|
|
62
59
|
return error;
|
63
60
|
}
|
@@ -66,7 +63,7 @@ static int maybe_describe(git_object**out, git_repository *repo, const char *spe
|
|
66
63
|
{
|
67
64
|
const char *substr;
|
68
65
|
int error;
|
69
|
-
|
66
|
+
git_regexp regex;
|
70
67
|
|
71
68
|
substr = strstr(spec, "-g");
|
72
69
|
|
@@ -76,8 +73,8 @@ static int maybe_describe(git_object**out, git_repository *repo, const char *spe
|
|
76
73
|
if (build_regex(®ex, ".+-[0-9]+-g[0-9a-fA-F]+") < 0)
|
77
74
|
return -1;
|
78
75
|
|
79
|
-
error =
|
80
|
-
|
76
|
+
error = git_regexp_match(®ex, spec);
|
77
|
+
git_regexp_dispose(®ex);
|
81
78
|
|
82
79
|
if (error)
|
83
80
|
return GIT_ENOTFOUND;
|
@@ -101,7 +98,7 @@ static int revparse_lookup_object(
|
|
101
98
|
if (!error) {
|
102
99
|
|
103
100
|
error = git_object_lookup(
|
104
|
-
object_out, repo, git_reference_target(ref),
|
101
|
+
object_out, repo, git_reference_target(ref), GIT_OBJECT_ANY);
|
105
102
|
|
106
103
|
if (!error)
|
107
104
|
*reference_out = ref;
|
@@ -119,7 +116,7 @@ static int revparse_lookup_object(
|
|
119
116
|
if ((error = maybe_describe(object_out, repo, spec)) != GIT_ENOTFOUND)
|
120
117
|
return error;
|
121
118
|
|
122
|
-
|
119
|
+
git_error_set(GIT_ERROR_REFERENCE, "revspec '%s' not found", spec);
|
123
120
|
return GIT_ENOTFOUND;
|
124
121
|
}
|
125
122
|
|
@@ -143,12 +140,11 @@ static int retrieve_previously_checked_out_branch_or_revision(git_object **out,
|
|
143
140
|
{
|
144
141
|
git_reference *ref = NULL;
|
145
142
|
git_reflog *reflog = NULL;
|
146
|
-
|
143
|
+
git_regexp preg;
|
147
144
|
int error = -1;
|
148
145
|
size_t i, numentries, cur;
|
149
146
|
const git_reflog_entry *entry;
|
150
147
|
const char *msg;
|
151
|
-
regmatch_t regexmatches[2];
|
152
148
|
git_buf buf = GIT_BUF_INIT;
|
153
149
|
|
154
150
|
cur = position;
|
@@ -168,12 +164,14 @@ static int retrieve_previously_checked_out_branch_or_revision(git_object **out,
|
|
168
164
|
numentries = git_reflog_entrycount(reflog);
|
169
165
|
|
170
166
|
for (i = 0; i < numentries; i++) {
|
167
|
+
git_regmatch regexmatches[2];
|
168
|
+
|
171
169
|
entry = git_reflog_entry_byindex(reflog, i);
|
172
170
|
msg = git_reflog_entry_message(entry);
|
173
171
|
if (!msg)
|
174
172
|
continue;
|
175
173
|
|
176
|
-
if (
|
174
|
+
if (git_regexp_search(&preg, msg, 2, regexmatches) < 0)
|
177
175
|
continue;
|
178
176
|
|
179
177
|
cur--;
|
@@ -181,7 +179,8 @@ static int retrieve_previously_checked_out_branch_or_revision(git_object **out,
|
|
181
179
|
if (cur > 0)
|
182
180
|
continue;
|
183
181
|
|
184
|
-
git_buf_put(&buf, msg+regexmatches[1].
|
182
|
+
if ((git_buf_put(&buf, msg+regexmatches[1].start, regexmatches[1].end - regexmatches[1].start)) < 0)
|
183
|
+
goto cleanup;
|
185
184
|
|
186
185
|
if ((error = git_reference_dwim(base_ref, repo, git_buf_cstr(&buf))) == 0)
|
187
186
|
goto cleanup;
|
@@ -198,8 +197,8 @@ static int retrieve_previously_checked_out_branch_or_revision(git_object **out,
|
|
198
197
|
|
199
198
|
cleanup:
|
200
199
|
git_reference_free(ref);
|
201
|
-
|
202
|
-
|
200
|
+
git_buf_dispose(&buf);
|
201
|
+
git_regexp_dispose(&preg);
|
203
202
|
git_reflog_free(reflog);
|
204
203
|
return error;
|
205
204
|
}
|
@@ -245,8 +244,8 @@ static int retrieve_oid_from_reflog(git_oid *oid, git_reference *ref, size_t ide
|
|
245
244
|
return 0;
|
246
245
|
|
247
246
|
notfound:
|
248
|
-
|
249
|
-
|
247
|
+
git_error_set(
|
248
|
+
GIT_ERROR_REFERENCE,
|
250
249
|
"reflog for '%s' has only %"PRIuZ" entries, asked for %"PRIuZ,
|
251
250
|
git_reference_name(ref), numentries, identifier);
|
252
251
|
|
@@ -269,14 +268,14 @@ static int retrieve_revobject_from_reflog(git_object **out, git_reference **base
|
|
269
268
|
}
|
270
269
|
|
271
270
|
if (position == 0) {
|
272
|
-
error = git_object_lookup(out, repo, git_reference_target(ref),
|
271
|
+
error = git_object_lookup(out, repo, git_reference_target(ref), GIT_OBJECT_ANY);
|
273
272
|
goto cleanup;
|
274
273
|
}
|
275
274
|
|
276
275
|
if ((error = retrieve_oid_from_reflog(&oid, ref, position)) < 0)
|
277
276
|
goto cleanup;
|
278
277
|
|
279
|
-
error = git_object_lookup(out, repo, &oid,
|
278
|
+
error = git_object_lookup(out, repo, &oid, GIT_OBJECT_ANY);
|
280
279
|
|
281
280
|
cleanup:
|
282
281
|
git_reference_free(ref);
|
@@ -351,30 +350,30 @@ static int handle_at_syntax(git_object **out, git_reference **ref, const char *s
|
|
351
350
|
error = retrieve_revobject_from_reflog(out, ref, repo, git_buf_cstr(&identifier), (size_t)timestamp);
|
352
351
|
|
353
352
|
cleanup:
|
354
|
-
|
353
|
+
git_buf_dispose(&identifier);
|
355
354
|
return error;
|
356
355
|
}
|
357
356
|
|
358
|
-
static
|
357
|
+
static git_object_t parse_obj_type(const char *str)
|
359
358
|
{
|
360
359
|
if (!strcmp(str, "commit"))
|
361
|
-
return
|
360
|
+
return GIT_OBJECT_COMMIT;
|
362
361
|
|
363
362
|
if (!strcmp(str, "tree"))
|
364
|
-
return
|
363
|
+
return GIT_OBJECT_TREE;
|
365
364
|
|
366
365
|
if (!strcmp(str, "blob"))
|
367
|
-
return
|
366
|
+
return GIT_OBJECT_BLOB;
|
368
367
|
|
369
368
|
if (!strcmp(str, "tag"))
|
370
|
-
return
|
369
|
+
return GIT_OBJECT_TAG;
|
371
370
|
|
372
|
-
return
|
371
|
+
return GIT_OBJECT_INVALID;
|
373
372
|
}
|
374
373
|
|
375
374
|
static int dereference_to_non_tag(git_object **out, git_object *obj)
|
376
375
|
{
|
377
|
-
if (git_object_type(obj) ==
|
376
|
+
if (git_object_type(obj) == GIT_OBJECT_TAG)
|
378
377
|
return git_tag_peel(out, (git_tag *)obj);
|
379
378
|
|
380
379
|
return git_object_dup(out, obj);
|
@@ -385,7 +384,7 @@ static int handle_caret_parent_syntax(git_object **out, git_object *obj, int n)
|
|
385
384
|
git_object *temp_commit = NULL;
|
386
385
|
int error;
|
387
386
|
|
388
|
-
if ((error = git_object_peel(&temp_commit, obj,
|
387
|
+
if ((error = git_object_peel(&temp_commit, obj, GIT_OBJECT_COMMIT)) < 0)
|
389
388
|
return (error == GIT_EAMBIGUOUS || error == GIT_ENOTFOUND) ?
|
390
389
|
GIT_EINVALIDSPEC : error;
|
391
390
|
|
@@ -405,7 +404,7 @@ static int handle_linear_syntax(git_object **out, git_object *obj, int n)
|
|
405
404
|
git_object *temp_commit = NULL;
|
406
405
|
int error;
|
407
406
|
|
408
|
-
if ((error = git_object_peel(&temp_commit, obj,
|
407
|
+
if ((error = git_object_peel(&temp_commit, obj, GIT_OBJECT_COMMIT)) < 0)
|
409
408
|
return (error == GIT_EAMBIGUOUS || error == GIT_ENOTFOUND) ?
|
410
409
|
GIT_EINVALIDSPEC : error;
|
411
410
|
|
@@ -424,7 +423,7 @@ static int handle_colon_syntax(
|
|
424
423
|
int error = -1;
|
425
424
|
git_tree_entry *entry = NULL;
|
426
425
|
|
427
|
-
if ((error = git_object_peel(&tree, obj,
|
426
|
+
if ((error = git_object_peel(&tree, obj, GIT_OBJECT_TREE)) < 0)
|
428
427
|
return error == GIT_ENOTFOUND ? GIT_EINVALIDSPEC : error;
|
429
428
|
|
430
429
|
if (*path == '\0') {
|
@@ -448,7 +447,7 @@ cleanup:
|
|
448
447
|
return error;
|
449
448
|
}
|
450
449
|
|
451
|
-
static int walk_and_search(git_object **out, git_revwalk *walk,
|
450
|
+
static int walk_and_search(git_object **out, git_revwalk *walk, git_regexp *regex)
|
452
451
|
{
|
453
452
|
int error;
|
454
453
|
git_oid oid;
|
@@ -456,11 +455,11 @@ static int walk_and_search(git_object **out, git_revwalk *walk, regex_t *regex)
|
|
456
455
|
|
457
456
|
while (!(error = git_revwalk_next(&oid, walk))) {
|
458
457
|
|
459
|
-
error = git_object_lookup(&obj, git_revwalk_repository(walk), &oid,
|
458
|
+
error = git_object_lookup(&obj, git_revwalk_repository(walk), &oid, GIT_OBJECT_COMMIT);
|
460
459
|
if ((error < 0) && (error != GIT_ENOTFOUND))
|
461
460
|
return -1;
|
462
461
|
|
463
|
-
if (!
|
462
|
+
if (!git_regexp_match(regex, git_commit_message((git_commit*)obj))) {
|
464
463
|
*out = obj;
|
465
464
|
return 0;
|
466
465
|
}
|
@@ -476,7 +475,7 @@ static int walk_and_search(git_object **out, git_revwalk *walk, regex_t *regex)
|
|
476
475
|
|
477
476
|
static int handle_grep_syntax(git_object **out, git_repository *repo, const git_oid *spec_oid, const char *pattern)
|
478
477
|
{
|
479
|
-
|
478
|
+
git_regexp preg;
|
480
479
|
git_revwalk *walk = NULL;
|
481
480
|
int error;
|
482
481
|
|
@@ -497,7 +496,7 @@ static int handle_grep_syntax(git_object **out, git_repository *repo, const git_
|
|
497
496
|
error = walk_and_search(out, walk, &preg);
|
498
497
|
|
499
498
|
cleanup:
|
500
|
-
|
499
|
+
git_regexp_dispose(&preg);
|
501
500
|
git_revwalk_free(walk);
|
502
501
|
|
503
502
|
return error;
|
@@ -505,7 +504,7 @@ cleanup:
|
|
505
504
|
|
506
505
|
static int handle_caret_curly_syntax(git_object **out, git_object *obj, const char *curly_braces_content)
|
507
506
|
{
|
508
|
-
|
507
|
+
git_object_t expected_type;
|
509
508
|
|
510
509
|
if (*curly_braces_content == '\0')
|
511
510
|
return dereference_to_non_tag(out, obj);
|
@@ -515,7 +514,7 @@ static int handle_caret_curly_syntax(git_object **out, git_object *obj, const ch
|
|
515
514
|
|
516
515
|
expected_type = parse_obj_type(curly_braces_content);
|
517
516
|
|
518
|
-
if (expected_type ==
|
517
|
+
if (expected_type == GIT_OBJECT_INVALID)
|
519
518
|
return GIT_EINVALIDSPEC;
|
520
519
|
|
521
520
|
return git_object_peel(out, obj, expected_type);
|
@@ -601,7 +600,7 @@ static int object_from_reference(git_object **object, git_reference *reference)
|
|
601
600
|
if (git_reference_resolve(&resolved, reference) < 0)
|
602
601
|
return -1;
|
603
602
|
|
604
|
-
error = git_object_lookup(object, reference->db->repo, git_reference_target(resolved),
|
603
|
+
error = git_object_lookup(object, reference->db->repo, git_reference_target(resolved), GIT_OBJECT_ANY);
|
605
604
|
git_reference_free(resolved);
|
606
605
|
|
607
606
|
return error;
|
@@ -625,7 +624,7 @@ static int ensure_base_rev_loaded(git_object **object, git_reference **reference
|
|
625
624
|
return -1;
|
626
625
|
|
627
626
|
error = revparse_lookup_object(object, reference, repo, git_buf_cstr(&identifier));
|
628
|
-
|
627
|
+
git_buf_dispose(&identifier);
|
629
628
|
|
630
629
|
return error;
|
631
630
|
}
|
@@ -759,7 +758,7 @@ int revparse__ext(
|
|
759
758
|
* TODO: support merge-stage path lookup (":2:Makefile")
|
760
759
|
* and plain index blob lookup (:i-am/a/blob)
|
761
760
|
*/
|
762
|
-
|
761
|
+
git_error_set(GIT_ERROR_INVALID, "unimplemented");
|
763
762
|
error = GIT_ERROR;
|
764
763
|
goto cleanup;
|
765
764
|
}
|
@@ -814,14 +813,14 @@ int revparse__ext(
|
|
814
813
|
cleanup:
|
815
814
|
if (error) {
|
816
815
|
if (error == GIT_EINVALIDSPEC)
|
817
|
-
|
816
|
+
git_error_set(GIT_ERROR_INVALID,
|
818
817
|
"failed to parse revision specifier - Invalid pattern '%s'", spec);
|
819
818
|
|
820
819
|
git_object_free(base_rev);
|
821
820
|
git_reference_free(reference);
|
822
821
|
}
|
823
822
|
|
824
|
-
|
823
|
+
git_buf_dispose(&buf);
|
825
824
|
return error;
|
826
825
|
}
|
827
826
|
|
@@ -898,7 +897,7 @@ int git_revparse(
|
|
898
897
|
* allowed.
|
899
898
|
*/
|
900
899
|
if (!git__strcmp(spec, "..")) {
|
901
|
-
|
900
|
+
git_error_set(GIT_ERROR_INVALID, "Invalid pattern '..'");
|
902
901
|
return GIT_EINVALIDSPEC;
|
903
902
|
}
|
904
903
|
|