rugged 1.0.1 → 1.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +1 -0
- data/README.md +1 -1
- data/ext/rugged/rugged.c +7 -4
- data/ext/rugged/rugged_commit.c +1 -1
- data/ext/rugged/rugged_object.c +1 -1
- data/ext/rugged/rugged_repo.c +3 -3
- data/lib/rugged/commit.rb +16 -2
- data/lib/rugged/repository.rb +2 -2
- data/lib/rugged/version.rb +1 -1
- data/vendor/libgit2/CMakeLists.txt +41 -74
- data/vendor/libgit2/COPYING +109 -1
- data/vendor/libgit2/cmake/{Modules/AddCFlagIfSupported.cmake → AddCFlagIfSupported.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/EnableWarnings.cmake → EnableWarnings.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindCoreFoundation.cmake → FindCoreFoundation.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindGSSAPI.cmake → FindGSSAPI.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindGSSFramework.cmake → FindGSSFramework.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindHTTP_Parser.cmake → FindHTTP_Parser.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindIconv.cmake → FindIconv.cmake} +0 -0
- data/vendor/libgit2/cmake/FindLibSSH2.cmake +13 -0
- data/vendor/libgit2/cmake/{Modules/FindPCRE.cmake → FindPCRE.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindPCRE2.cmake → FindPCRE2.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindPkgLibraries.cmake → FindPkgLibraries.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindSecurity.cmake → FindSecurity.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/FindStatNsec.cmake → FindStatNsec.cmake} +0 -0
- data/vendor/libgit2/cmake/Findfutimens.cmake +14 -0
- data/vendor/libgit2/cmake/{Modules/FindmbedTLS.cmake → FindmbedTLS.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/IdeSplitSources.cmake → IdeSplitSources.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/PkgBuildConfig.cmake → PkgBuildConfig.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/SanitizeBool.cmake → SanitizeBool.cmake} +0 -0
- data/vendor/libgit2/cmake/{Modules/SelectGSSAPI.cmake → SelectGSSAPI.cmake} +18 -26
- data/vendor/libgit2/cmake/{Modules/SelectHTTPSBackend.cmake → SelectHTTPSBackend.cmake} +29 -32
- data/vendor/libgit2/cmake/{Modules/SelectHashes.cmake → SelectHashes.cmake} +21 -28
- data/vendor/libgit2/deps/chromium-zlib/CMakeLists.txt +101 -0
- data/vendor/libgit2/deps/http-parser/CMakeLists.txt +4 -3
- data/vendor/libgit2/deps/ntlmclient/CMakeLists.txt +24 -10
- data/vendor/libgit2/deps/ntlmclient/compat.h +0 -27
- data/vendor/libgit2/deps/ntlmclient/crypt.h +14 -9
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.c +20 -20
- data/vendor/libgit2/deps/ntlmclient/crypt_commoncrypto.h +3 -3
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.c +37 -36
- data/vendor/libgit2/deps/ntlmclient/crypt_mbedtls.h +4 -3
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.c +178 -51
- data/vendor/libgit2/deps/ntlmclient/crypt_openssl.h +74 -5
- data/vendor/libgit2/deps/ntlmclient/ntlm.c +164 -135
- data/vendor/libgit2/deps/ntlmclient/ntlm.h +13 -9
- data/vendor/libgit2/deps/ntlmclient/ntlmclient.h +16 -3
- data/vendor/libgit2/deps/ntlmclient/unicode.h +10 -4
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.c +16 -27
- data/vendor/libgit2/deps/ntlmclient/unicode_builtin.h +20 -0
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.c +28 -52
- data/vendor/libgit2/deps/ntlmclient/unicode_iconv.h +22 -0
- data/vendor/libgit2/deps/ntlmclient/util.c +15 -1
- data/vendor/libgit2/deps/ntlmclient/util.h +2 -1
- data/vendor/libgit2/deps/pcre/LICENCE +93 -0
- data/vendor/libgit2/deps/pcre/pcre.h +2 -2
- data/vendor/libgit2/deps/pcre/pcre_compile.c +29 -17
- data/vendor/libgit2/deps/pcre/pcre_jit_compile.c +4 -4
- data/vendor/libgit2/deps/pcre/pcreposix.c +2 -3
- data/vendor/libgit2/deps/zlib/CMakeLists.txt +6 -5
- data/vendor/libgit2/deps/zlib/deflate.c +1 -0
- data/vendor/libgit2/include/git2/annotated_commit.h +1 -1
- data/vendor/libgit2/include/git2/apply.h +2 -0
- data/vendor/libgit2/include/git2/attr.h +95 -0
- data/vendor/libgit2/include/git2/blame.h +95 -42
- data/vendor/libgit2/include/git2/blob.h +37 -3
- data/vendor/libgit2/include/git2/branch.h +25 -0
- data/vendor/libgit2/include/git2/cert.h +42 -5
- data/vendor/libgit2/include/git2/checkout.h +28 -12
- data/vendor/libgit2/include/git2/clone.h +1 -1
- data/vendor/libgit2/include/git2/commit.h +35 -19
- data/vendor/libgit2/include/git2/common.h +51 -6
- data/vendor/libgit2/include/git2/config.h +1 -1
- data/vendor/libgit2/include/git2/deprecated.h +368 -8
- data/vendor/libgit2/include/git2/diff.h +34 -113
- data/vendor/libgit2/include/git2/email.h +127 -0
- data/vendor/libgit2/include/git2/errors.h +8 -7
- data/vendor/libgit2/include/git2/filter.h +63 -17
- data/vendor/libgit2/include/git2/graph.h +20 -2
- data/vendor/libgit2/include/git2/index.h +4 -5
- data/vendor/libgit2/include/git2/indexer.h +2 -1
- data/vendor/libgit2/include/git2/notes.h +2 -2
- data/vendor/libgit2/include/git2/odb.h +44 -20
- data/vendor/libgit2/include/git2/oidarray.h +5 -8
- data/vendor/libgit2/include/git2/pack.h +1 -1
- data/vendor/libgit2/include/git2/patch.h +8 -0
- data/vendor/libgit2/include/git2/rebase.h +25 -1
- data/vendor/libgit2/include/git2/refs.h +9 -5
- data/vendor/libgit2/include/git2/remote.h +62 -9
- data/vendor/libgit2/include/git2/repository.h +107 -62
- data/vendor/libgit2/include/git2/revparse.h +5 -5
- data/vendor/libgit2/include/git2/stash.h +1 -1
- data/vendor/libgit2/include/git2/status.h +115 -59
- data/vendor/libgit2/include/git2/stdint.h +3 -3
- data/vendor/libgit2/include/git2/strarray.h +6 -10
- data/vendor/libgit2/include/git2/submodule.h +9 -0
- data/vendor/libgit2/include/git2/sys/commit_graph.h +174 -0
- data/vendor/libgit2/include/git2/sys/email.h +45 -0
- data/vendor/libgit2/include/git2/sys/filter.h +49 -28
- data/vendor/libgit2/include/git2/sys/midx.h +74 -0
- data/vendor/libgit2/include/git2/sys/odb_backend.h +7 -0
- data/vendor/libgit2/include/git2/sys/transport.h +1 -0
- data/vendor/libgit2/include/git2/tag.h +12 -0
- data/vendor/libgit2/include/git2/transport.h +1 -1
- data/vendor/libgit2/include/git2/tree.h +2 -14
- data/vendor/libgit2/include/git2/types.h +9 -0
- data/vendor/libgit2/include/git2/version.h +4 -4
- data/vendor/libgit2/include/git2/worktree.h +1 -0
- data/vendor/libgit2/include/git2.h +1 -0
- data/vendor/libgit2/src/CMakeLists.txt +84 -44
- data/vendor/libgit2/src/alloc.c +21 -8
- data/vendor/libgit2/src/allocators/failalloc.c +92 -0
- data/vendor/libgit2/src/allocators/failalloc.h +23 -0
- data/vendor/libgit2/src/allocators/stdalloc.c +41 -10
- data/vendor/libgit2/src/allocators/win32_leakcheck.c +118 -0
- data/vendor/libgit2/src/allocators/{win32_crtdbg.h → win32_leakcheck.h} +3 -3
- data/vendor/libgit2/src/annotated_commit.c +21 -9
- data/vendor/libgit2/src/apply.c +21 -8
- data/vendor/libgit2/src/array.h +11 -11
- data/vendor/libgit2/src/assert_safe.h +58 -0
- data/vendor/libgit2/src/attr.c +192 -70
- data/vendor/libgit2/src/attr_file.c +99 -41
- data/vendor/libgit2/src/attr_file.h +32 -11
- data/vendor/libgit2/src/attrcache.c +44 -40
- data/vendor/libgit2/src/attrcache.h +4 -5
- data/vendor/libgit2/src/blame.c +32 -19
- data/vendor/libgit2/src/blame_git.c +7 -4
- data/vendor/libgit2/src/blob.c +60 -32
- data/vendor/libgit2/src/branch.c +87 -37
- data/vendor/libgit2/src/buffer.c +349 -29
- data/vendor/libgit2/src/buffer.h +154 -2
- data/vendor/libgit2/src/cache.c +3 -24
- data/vendor/libgit2/src/cache.h +7 -7
- data/vendor/libgit2/src/cc-compat.h +10 -8
- data/vendor/libgit2/src/checkout.c +103 -105
- data/vendor/libgit2/src/cherrypick.c +8 -2
- data/vendor/libgit2/src/clone.c +105 -30
- data/vendor/libgit2/src/commit.c +41 -28
- data/vendor/libgit2/src/commit_graph.c +1209 -0
- data/vendor/libgit2/src/commit_graph.h +162 -0
- data/vendor/libgit2/src/commit_list.c +46 -0
- data/vendor/libgit2/src/commit_list.h +2 -0
- data/vendor/libgit2/src/common.h +26 -2
- data/vendor/libgit2/src/config.c +41 -23
- data/vendor/libgit2/src/config_cache.c +9 -4
- data/vendor/libgit2/src/config_entries.c +35 -27
- data/vendor/libgit2/src/config_file.c +17 -9
- data/vendor/libgit2/src/config_parse.c +6 -8
- data/vendor/libgit2/src/config_snapshot.c +2 -1
- data/vendor/libgit2/src/crlf.c +16 -6
- data/vendor/libgit2/src/date.c +4 -3
- data/vendor/libgit2/src/delta.c +1 -1
- data/vendor/libgit2/src/describe.c +12 -5
- data/vendor/libgit2/src/diff.c +55 -183
- data/vendor/libgit2/src/diff_driver.c +21 -17
- data/vendor/libgit2/src/diff_file.c +5 -7
- data/vendor/libgit2/src/diff_generate.c +56 -28
- data/vendor/libgit2/src/diff_parse.c +2 -3
- data/vendor/libgit2/src/diff_print.c +81 -65
- data/vendor/libgit2/src/diff_stats.c +19 -16
- data/vendor/libgit2/src/diff_tform.c +13 -13
- data/vendor/libgit2/src/diff_xdiff.c +4 -2
- data/vendor/libgit2/src/diff_xdiff.h +1 -1
- data/vendor/libgit2/src/email.c +299 -0
- data/vendor/libgit2/src/email.h +25 -0
- data/vendor/libgit2/src/errors.c +26 -19
- data/vendor/libgit2/src/features.h.in +5 -1
- data/vendor/libgit2/src/fetch.c +7 -2
- data/vendor/libgit2/src/fetchhead.c +8 -4
- data/vendor/libgit2/src/filebuf.c +9 -7
- data/vendor/libgit2/src/filter.c +215 -113
- data/vendor/libgit2/src/filter.h +24 -5
- data/vendor/libgit2/src/futils.c +8 -8
- data/vendor/libgit2/src/futils.h +4 -4
- data/vendor/libgit2/src/graph.c +64 -9
- data/vendor/libgit2/src/hash/sha1/collisiondetect.c +3 -3
- data/vendor/libgit2/src/hash/sha1/common_crypto.c +3 -3
- data/vendor/libgit2/src/hash/sha1/generic.h +1 -1
- data/vendor/libgit2/src/hash/sha1/mbedtls.c +12 -12
- data/vendor/libgit2/src/hash/sha1/openssl.c +3 -3
- data/vendor/libgit2/src/hash/sha1/sha1dc/sha1.c +8 -10
- data/vendor/libgit2/src/hash/sha1/win32.c +15 -11
- data/vendor/libgit2/src/hash.c +16 -13
- data/vendor/libgit2/src/hash.h +1 -1
- data/vendor/libgit2/src/hashsig.c +23 -10
- data/vendor/libgit2/src/ident.c +13 -3
- data/vendor/libgit2/src/idxmap.c +0 -22
- data/vendor/libgit2/src/ignore.c +33 -17
- data/vendor/libgit2/src/index.c +124 -82
- data/vendor/libgit2/src/index.h +1 -1
- data/vendor/libgit2/src/indexer.c +95 -37
- data/vendor/libgit2/src/integer.h +79 -2
- data/vendor/libgit2/src/iterator.c +40 -28
- data/vendor/libgit2/src/iterator.h +1 -1
- data/vendor/libgit2/src/khash.h +2 -11
- data/vendor/libgit2/src/{settings.c → libgit2.c} +148 -49
- data/vendor/libgit2/src/libgit2.h +15 -0
- data/vendor/libgit2/src/mailmap.c +23 -10
- data/vendor/libgit2/src/map.h +3 -3
- data/vendor/libgit2/src/merge.c +95 -43
- data/vendor/libgit2/src/merge.h +2 -1
- data/vendor/libgit2/src/merge_driver.c +19 -13
- data/vendor/libgit2/src/merge_file.c +15 -9
- data/vendor/libgit2/src/message.c +3 -1
- data/vendor/libgit2/src/midx.c +879 -0
- data/vendor/libgit2/src/midx.h +110 -0
- data/vendor/libgit2/src/mwindow.c +214 -95
- data/vendor/libgit2/src/mwindow.h +3 -3
- data/vendor/libgit2/src/net.c +133 -4
- data/vendor/libgit2/src/net.h +16 -2
- data/vendor/libgit2/src/netops.c +6 -4
- data/vendor/libgit2/src/netops.h +2 -2
- data/vendor/libgit2/src/notes.c +40 -40
- data/vendor/libgit2/src/object.c +24 -15
- data/vendor/libgit2/src/odb.c +298 -57
- data/vendor/libgit2/src/odb.h +16 -2
- data/vendor/libgit2/src/odb_loose.c +31 -21
- data/vendor/libgit2/src/odb_mempack.c +3 -1
- data/vendor/libgit2/src/odb_pack.c +391 -114
- data/vendor/libgit2/src/oid.c +7 -4
- data/vendor/libgit2/src/oidarray.c +10 -1
- data/vendor/libgit2/src/pack-objects.c +83 -69
- data/vendor/libgit2/src/pack.c +383 -150
- data/vendor/libgit2/src/pack.h +44 -9
- data/vendor/libgit2/src/patch.c +14 -7
- data/vendor/libgit2/src/patch_generate.c +3 -5
- data/vendor/libgit2/src/patch_parse.c +6 -3
- data/vendor/libgit2/src/path.c +103 -58
- data/vendor/libgit2/src/path.h +80 -7
- data/vendor/libgit2/src/pathspec.c +12 -11
- data/vendor/libgit2/src/pool.c +34 -22
- data/vendor/libgit2/src/pool.h +9 -1
- data/vendor/libgit2/src/posix.c +43 -12
- data/vendor/libgit2/src/posix.h +9 -0
- data/vendor/libgit2/src/proxy.c +2 -0
- data/vendor/libgit2/src/push.c +2 -0
- data/vendor/libgit2/src/reader.c +10 -6
- data/vendor/libgit2/src/rebase.c +95 -49
- data/vendor/libgit2/src/refdb.c +165 -13
- data/vendor/libgit2/src/refdb.h +69 -0
- data/vendor/libgit2/src/refdb_fs.c +145 -153
- data/vendor/libgit2/src/reflog.c +21 -20
- data/vendor/libgit2/src/refs.c +153 -233
- data/vendor/libgit2/src/refs.h +2 -20
- data/vendor/libgit2/src/refspec.c +81 -45
- data/vendor/libgit2/src/regexp.c +2 -2
- data/vendor/libgit2/src/remote.c +320 -122
- data/vendor/libgit2/src/remote.h +2 -1
- data/vendor/libgit2/src/repository.c +476 -203
- data/vendor/libgit2/src/repository.h +27 -29
- data/vendor/libgit2/src/reset.c +8 -7
- data/vendor/libgit2/src/revert.c +8 -2
- data/vendor/libgit2/src/revparse.c +23 -17
- data/vendor/libgit2/src/revwalk.c +35 -20
- data/vendor/libgit2/src/runtime.c +162 -0
- data/vendor/libgit2/src/runtime.h +62 -0
- data/vendor/libgit2/src/{refdb_fs.h → settings.h} +3 -11
- data/vendor/libgit2/src/signature.c +6 -5
- data/vendor/libgit2/src/sortedcache.c +2 -3
- data/vendor/libgit2/src/sortedcache.h +10 -8
- data/vendor/libgit2/src/stash.c +6 -2
- data/vendor/libgit2/src/status.c +9 -4
- data/vendor/libgit2/src/strarray.c +64 -0
- data/vendor/libgit2/src/streams/mbedtls.c +14 -17
- data/vendor/libgit2/src/streams/mbedtls.h +1 -1
- data/vendor/libgit2/src/streams/openssl.c +113 -207
- data/vendor/libgit2/src/streams/openssl.h +9 -1
- data/vendor/libgit2/src/streams/openssl_dynamic.c +309 -0
- data/vendor/libgit2/src/streams/openssl_dynamic.h +348 -0
- data/vendor/libgit2/src/streams/openssl_legacy.c +203 -0
- data/vendor/libgit2/src/streams/openssl_legacy.h +63 -0
- data/vendor/libgit2/src/streams/registry.c +10 -9
- data/vendor/libgit2/src/streams/socket.c +6 -2
- data/vendor/libgit2/src/streams/stransport.c +6 -3
- data/vendor/libgit2/src/streams/tls.c +5 -3
- data/vendor/libgit2/src/submodule.c +134 -66
- data/vendor/libgit2/src/submodule.h +9 -9
- data/vendor/libgit2/src/sysdir.c +8 -26
- data/vendor/libgit2/src/sysdir.h +0 -11
- data/vendor/libgit2/src/tag.c +49 -11
- data/vendor/libgit2/src/thread.c +140 -0
- data/vendor/libgit2/src/thread.h +479 -0
- data/vendor/libgit2/src/threadstate.c +84 -0
- data/vendor/libgit2/src/threadstate.h +24 -0
- data/vendor/libgit2/src/trace.c +2 -2
- data/vendor/libgit2/src/trace.h +17 -13
- data/vendor/libgit2/src/trailer.c +1 -1
- data/vendor/libgit2/src/transaction.c +21 -9
- data/vendor/libgit2/src/transport.c +3 -3
- data/vendor/libgit2/src/transports/auth.c +1 -1
- data/vendor/libgit2/src/transports/auth_negotiate.c +11 -4
- data/vendor/libgit2/src/transports/auth_ntlm.c +10 -6
- data/vendor/libgit2/src/transports/credential.c +17 -7
- data/vendor/libgit2/src/transports/credential_helpers.c +2 -0
- data/vendor/libgit2/src/transports/git.c +1 -3
- data/vendor/libgit2/src/transports/http.c +19 -17
- data/vendor/libgit2/src/transports/http.h +1 -0
- data/vendor/libgit2/src/transports/httpclient.c +68 -38
- data/vendor/libgit2/src/transports/httpclient.h +1 -1
- data/vendor/libgit2/src/transports/local.c +5 -5
- data/vendor/libgit2/src/transports/smart.c +14 -9
- data/vendor/libgit2/src/transports/smart.h +1 -1
- data/vendor/libgit2/src/transports/smart_protocol.c +11 -5
- data/vendor/libgit2/src/transports/ssh.c +55 -21
- data/vendor/libgit2/src/transports/winhttp.c +157 -89
- data/vendor/libgit2/src/tree.c +100 -77
- data/vendor/libgit2/src/tree.h +1 -0
- data/vendor/libgit2/src/tsort.c +0 -2
- data/vendor/libgit2/src/unix/map.c +3 -1
- data/vendor/libgit2/src/unix/posix.h +16 -1
- data/vendor/libgit2/src/unix/pthread.h +2 -1
- data/vendor/libgit2/src/utf8.c +150 -0
- data/vendor/libgit2/src/utf8.h +52 -0
- data/vendor/libgit2/src/util.c +75 -184
- data/vendor/libgit2/src/util.h +34 -40
- data/vendor/libgit2/src/vector.c +23 -19
- data/vendor/libgit2/src/vector.h +4 -2
- data/vendor/libgit2/src/win32/findfile.c +5 -3
- data/vendor/libgit2/src/win32/git2.rc +18 -3
- data/vendor/libgit2/src/win32/map.c +1 -1
- data/vendor/libgit2/src/win32/msvc-compat.h +9 -1
- data/vendor/libgit2/src/win32/path_w32.c +23 -25
- data/vendor/libgit2/src/win32/path_w32.h +0 -1
- data/vendor/libgit2/src/win32/posix.h +6 -6
- data/vendor/libgit2/src/win32/posix_w32.c +86 -7
- data/vendor/libgit2/src/win32/precompiled.h +0 -1
- data/vendor/libgit2/src/win32/reparse.h +4 -4
- data/vendor/libgit2/src/win32/thread.c +24 -15
- data/vendor/libgit2/src/win32/thread.h +1 -1
- data/vendor/libgit2/src/win32/w32_buffer.c +3 -3
- data/vendor/libgit2/src/win32/w32_common.h +18 -9
- data/vendor/libgit2/src/win32/{w32_crtdbg_stacktrace.c → w32_leakcheck.c} +269 -33
- data/vendor/libgit2/src/win32/w32_leakcheck.h +222 -0
- data/vendor/libgit2/src/win32/w32_util.h +6 -6
- data/vendor/libgit2/src/worktree.c +36 -14
- data/vendor/libgit2/src/zstream.c +1 -1
- metadata +65 -42
- data/vendor/libgit2/cmake/Modules/CheckPrototypeDefinition.c.in +0 -29
- data/vendor/libgit2/cmake/Modules/CheckPrototypeDefinition.cmake +0 -96
- data/vendor/libgit2/src/allocators/win32_crtdbg.c +0 -118
- data/vendor/libgit2/src/buf_text.c +0 -316
- data/vendor/libgit2/src/buf_text.h +0 -122
- data/vendor/libgit2/src/global.c +0 -361
- data/vendor/libgit2/src/global.h +0 -41
- data/vendor/libgit2/src/thread-utils.c +0 -58
- data/vendor/libgit2/src/thread-utils.h +0 -246
- data/vendor/libgit2/src/win32/w32_crtdbg_stacktrace.h +0 -127
- data/vendor/libgit2/src/win32/w32_stack.c +0 -188
- data/vendor/libgit2/src/win32/w32_stack.h +0 -140
@@ -164,23 +164,27 @@ out:
|
|
164
164
|
return error;
|
165
165
|
}
|
166
166
|
|
167
|
+
static void config_file_clear_includes(config_file_backend *cfg)
|
168
|
+
{
|
169
|
+
config_file *include;
|
170
|
+
uint32_t i;
|
171
|
+
|
172
|
+
git_array_foreach(cfg->file.includes, i, include)
|
173
|
+
config_file_clear(include);
|
174
|
+
git_array_clear(cfg->file.includes);
|
175
|
+
}
|
176
|
+
|
167
177
|
static int config_file_set_entries(git_config_backend *cfg, git_config_entries *entries)
|
168
178
|
{
|
169
179
|
config_file_backend *b = GIT_CONTAINER_OF(cfg, config_file_backend, parent);
|
170
180
|
git_config_entries *old = NULL;
|
171
|
-
config_file *include;
|
172
181
|
int error;
|
173
|
-
uint32_t i;
|
174
182
|
|
175
183
|
if (b->parent.readonly) {
|
176
184
|
git_error_set(GIT_ERROR_CONFIG, "this backend is read-only");
|
177
185
|
return -1;
|
178
186
|
}
|
179
187
|
|
180
|
-
git_array_foreach(b->file.includes, i, include)
|
181
|
-
config_file_clear(include);
|
182
|
-
git_array_clear(b->file.includes);
|
183
|
-
|
184
188
|
if ((error = git_mutex_lock(&b->values_mutex)) < 0) {
|
185
189
|
git_error_set(GIT_ERROR_OS, "failed to lock config backend");
|
186
190
|
goto out;
|
@@ -202,6 +206,8 @@ static int config_file_refresh_from_buffer(git_config_backend *cfg, const char *
|
|
202
206
|
git_config_entries *entries = NULL;
|
203
207
|
int error;
|
204
208
|
|
209
|
+
config_file_clear_includes(b);
|
210
|
+
|
205
211
|
if ((error = git_config_entries_new(&entries)) < 0 ||
|
206
212
|
(error = config_file_read_buffer(entries, b->repo, &b->file,
|
207
213
|
b->level, 0, buf, buflen)) < 0 ||
|
@@ -229,6 +235,8 @@ static int config_file_refresh(git_config_backend *cfg)
|
|
229
235
|
if (!modified)
|
230
236
|
return 0;
|
231
237
|
|
238
|
+
config_file_clear_includes(b);
|
239
|
+
|
232
240
|
if ((error = git_config_entries_new(&entries)) < 0 ||
|
233
241
|
(error = config_file_read(entries, b->repo, &b->file, b->level, 0)) < 0 ||
|
234
242
|
(error = config_file_set_entries(cfg, entries)) < 0)
|
@@ -365,7 +373,7 @@ static int config_file_set_multivar(
|
|
365
373
|
int result;
|
366
374
|
char *key;
|
367
375
|
|
368
|
-
|
376
|
+
GIT_ASSERT_ARG(regexp);
|
369
377
|
|
370
378
|
if ((result = git_config__normalize_name(name, &key)) < 0)
|
371
379
|
return result;
|
@@ -531,7 +539,7 @@ static char *escape_value(const char *ptr)
|
|
531
539
|
size_t len;
|
532
540
|
const char *esc;
|
533
541
|
|
534
|
-
|
542
|
+
GIT_ASSERT_ARG_WITH_RETVAL(ptr, NULL);
|
535
543
|
|
536
544
|
len = strlen(ptr);
|
537
545
|
if (!len)
|
@@ -1096,7 +1104,7 @@ static int write_on_eof(
|
|
1096
1104
|
/*
|
1097
1105
|
* This is pretty much the parsing, except we write out anything we don't have
|
1098
1106
|
*/
|
1099
|
-
static int config_file_write(config_file_backend *cfg, const char *orig_key, const char *key, const git_regexp *preg, const char*
|
1107
|
+
static int config_file_write(config_file_backend *cfg, const char *orig_key, const char *key, const git_regexp *preg, const char *value)
|
1100
1108
|
|
1101
1109
|
{
|
1102
1110
|
char *orig_section = NULL, *section = NULL, *orig_name, *name, *ldot;
|
@@ -7,8 +7,6 @@
|
|
7
7
|
|
8
8
|
#include "config_parse.h"
|
9
9
|
|
10
|
-
#include "buf_text.h"
|
11
|
-
|
12
10
|
#include <ctype.h>
|
13
11
|
|
14
12
|
const char *git_config_escapes = "ntb\"\\";
|
@@ -187,7 +185,7 @@ static int parse_section_header(git_config_parser *reader, char **section_out)
|
|
187
185
|
|
188
186
|
/* Make sure we were given a section header */
|
189
187
|
c = line[pos++];
|
190
|
-
|
188
|
+
GIT_ASSERT(c == '[');
|
191
189
|
|
192
190
|
c = line[pos++];
|
193
191
|
|
@@ -230,10 +228,10 @@ fail_parse:
|
|
230
228
|
static int skip_bom(git_parse_ctx *parser)
|
231
229
|
{
|
232
230
|
git_buf buf = GIT_BUF_INIT_CONST(parser->content, parser->content_len);
|
233
|
-
|
234
|
-
int bom_offset =
|
231
|
+
git_buf_bom_t bom;
|
232
|
+
int bom_offset = git_buf_detect_bom(&bom, &buf);
|
235
233
|
|
236
|
-
if (bom ==
|
234
|
+
if (bom == GIT_BUF_BOM_UTF8)
|
237
235
|
git_parse_advance_chars(parser, bom_offset);
|
238
236
|
|
239
237
|
/* TODO: reference implementation is pretty stupid with BoM */
|
@@ -351,7 +349,7 @@ static int parse_multiline_variable(git_config_parser *reader, git_buf *value, i
|
|
351
349
|
}
|
352
350
|
|
353
351
|
/* If it was just a comment, pretend it didn't exist */
|
354
|
-
quote_count = strip_comments(line,
|
352
|
+
quote_count = strip_comments(line, in_quotes);
|
355
353
|
if (line[0] == '\0')
|
356
354
|
goto next;
|
357
355
|
|
@@ -451,7 +449,7 @@ static int parse_variable(git_config_parser *reader, char **var_name, char **var
|
|
451
449
|
git_buf_attach(&multi_value, value, 0);
|
452
450
|
value = NULL;
|
453
451
|
|
454
|
-
if (parse_multiline_variable(reader, &multi_value, quote_count) < 0 ||
|
452
|
+
if (parse_multiline_variable(reader, &multi_value, quote_count % 2) < 0 ||
|
455
453
|
git_buf_oom(&multi_value)) {
|
456
454
|
error = -1;
|
457
455
|
git_buf_dispose(&multi_value);
|
data/vendor/libgit2/src/crlf.c
CHANGED
@@ -15,7 +15,6 @@
|
|
15
15
|
#include "futils.h"
|
16
16
|
#include "hash.h"
|
17
17
|
#include "filter.h"
|
18
|
-
#include "buf_text.h"
|
19
18
|
#include "repository.h"
|
20
19
|
|
21
20
|
typedef enum {
|
@@ -219,7 +218,7 @@ static int crlf_apply_to_odb(
|
|
219
218
|
if (ca->crlf_action == GIT_CRLF_BINARY || !git_buf_len(from))
|
220
219
|
return GIT_PASSTHROUGH;
|
221
220
|
|
222
|
-
is_binary =
|
221
|
+
is_binary = git_buf_gather_text_stats(&stats, from, false);
|
223
222
|
|
224
223
|
/* Heuristics to see if we can skip the conversion.
|
225
224
|
* Straight from Core Git.
|
@@ -247,7 +246,7 @@ static int crlf_apply_to_odb(
|
|
247
246
|
return GIT_PASSTHROUGH;
|
248
247
|
|
249
248
|
/* Actually drop the carriage returns */
|
250
|
-
return
|
249
|
+
return git_buf_crlf_to_lf(to, from);
|
251
250
|
}
|
252
251
|
|
253
252
|
static int crlf_apply_to_workdir(
|
@@ -262,7 +261,7 @@ static int crlf_apply_to_workdir(
|
|
262
261
|
if (git_buf_len(from) == 0 || output_eol(ca) != GIT_EOL_CRLF)
|
263
262
|
return GIT_PASSTHROUGH;
|
264
263
|
|
265
|
-
is_binary =
|
264
|
+
is_binary = git_buf_gather_text_stats(&stats, from, false);
|
266
265
|
|
267
266
|
/* If there are no LFs, or all LFs are part of a CRLF, nothing to do */
|
268
267
|
if (stats.lf == 0 || stats.lf == stats.crlf)
|
@@ -281,7 +280,7 @@ static int crlf_apply_to_workdir(
|
|
281
280
|
return GIT_PASSTHROUGH;
|
282
281
|
}
|
283
282
|
|
284
|
-
return
|
283
|
+
return git_buf_lf_to_crlf(to, from);
|
285
284
|
}
|
286
285
|
|
287
286
|
static int convert_attrs(
|
@@ -387,6 +386,17 @@ static int crlf_apply(
|
|
387
386
|
return crlf_apply_to_odb(*payload, to, from, src);
|
388
387
|
}
|
389
388
|
|
389
|
+
static int crlf_stream(
|
390
|
+
git_writestream **out,
|
391
|
+
git_filter *self,
|
392
|
+
void **payload,
|
393
|
+
const git_filter_source *src,
|
394
|
+
git_writestream *next)
|
395
|
+
{
|
396
|
+
return git_filter_buffered_stream_new(out,
|
397
|
+
self, crlf_apply, NULL, payload, src, next);
|
398
|
+
}
|
399
|
+
|
390
400
|
static void crlf_cleanup(
|
391
401
|
git_filter *self,
|
392
402
|
void *payload)
|
@@ -406,7 +416,7 @@ git_filter *git_crlf_filter_new(void)
|
|
406
416
|
f->f.initialize = NULL;
|
407
417
|
f->f.shutdown = git_filter_free;
|
408
418
|
f->f.check = crlf_check;
|
409
|
-
f->f.
|
419
|
+
f->f.stream = crlf_stream;
|
410
420
|
f->f.cleanup = crlf_cleanup;
|
411
421
|
|
412
422
|
return (git_filter *)f;
|
data/vendor/libgit2/src/date.c
CHANGED
@@ -204,7 +204,7 @@ static int is_date(int year, int month, int day, struct tm *now_tm, time_t now,
|
|
204
204
|
if (month > 0 && month < 13 && day > 0 && day < 32) {
|
205
205
|
struct tm check = *tm;
|
206
206
|
struct tm *r = (now_tm ? &check : tm);
|
207
|
-
|
207
|
+
git_time_t specified;
|
208
208
|
|
209
209
|
r->tm_mon = month - 1;
|
210
210
|
r->tm_mday = day;
|
@@ -722,7 +722,7 @@ static const char *approxidate_alpha(const char *date, struct tm *tm, struct tm
|
|
722
722
|
while (tl->type) {
|
723
723
|
size_t len = strlen(tl->type);
|
724
724
|
if (match_string(date, tl->type) >= len-1) {
|
725
|
-
update_tm(tm, now, tl->length * *num);
|
725
|
+
update_tm(tm, now, tl->length * (unsigned long)*num);
|
726
726
|
*num = 0;
|
727
727
|
*touched = 1;
|
728
728
|
return end;
|
@@ -881,7 +881,8 @@ int git__date_rfc2822_fmt(char *out, size_t len, const git_time *date)
|
|
881
881
|
struct tm gmt;
|
882
882
|
time_t t;
|
883
883
|
|
884
|
-
|
884
|
+
GIT_ASSERT_ARG(out);
|
885
|
+
GIT_ASSERT_ARG(date);
|
885
886
|
|
886
887
|
t = (time_t) (date->time + date->offset * 60);
|
887
888
|
|
data/vendor/libgit2/src/delta.c
CHANGED
@@ -391,7 +391,7 @@ static int show_suffix(
|
|
391
391
|
git_buf *buf,
|
392
392
|
int depth,
|
393
393
|
git_repository *repo,
|
394
|
-
const git_oid*
|
394
|
+
const git_oid *id,
|
395
395
|
unsigned int abbrev_size)
|
396
396
|
{
|
397
397
|
int error, size = 0;
|
@@ -655,7 +655,8 @@ int git_describe_commit(
|
|
655
655
|
int error = -1;
|
656
656
|
git_describe_options normalized;
|
657
657
|
|
658
|
-
|
658
|
+
GIT_ASSERT_ARG(result);
|
659
|
+
GIT_ASSERT_ARG(committish);
|
659
660
|
|
660
661
|
data.result = git__calloc(1, sizeof(git_describe_result));
|
661
662
|
GIT_ERROR_CHECK_ALLOC(data.result);
|
@@ -685,7 +686,7 @@ int git_describe_commit(
|
|
685
686
|
get_name, &data)) < 0)
|
686
687
|
goto cleanup;
|
687
688
|
|
688
|
-
if (git_oidmap_size(data.names) == 0 && !
|
689
|
+
if (git_oidmap_size(data.names) == 0 && !normalized.show_commit_oid_as_fallback) {
|
689
690
|
git_error_set(GIT_ERROR_DESCRIBE, "cannot describe - "
|
690
691
|
"no reference found, cannot describe anything.");
|
691
692
|
error = -1;
|
@@ -775,12 +776,14 @@ int git_describe_format(git_buf *out, const git_describe_result *result, const g
|
|
775
776
|
struct commit_name *name;
|
776
777
|
git_describe_format_options opts;
|
777
778
|
|
778
|
-
|
779
|
+
GIT_ASSERT_ARG(out);
|
780
|
+
GIT_ASSERT_ARG(result);
|
779
781
|
|
780
782
|
GIT_ERROR_CHECK_VERSION(given, GIT_DESCRIBE_FORMAT_OPTIONS_VERSION, "git_describe_format_options");
|
781
783
|
normalize_format_options(&opts, given);
|
782
784
|
|
783
|
-
git_buf_sanitize(out)
|
785
|
+
if ((error = git_buf_sanitize(out)) < 0)
|
786
|
+
return error;
|
784
787
|
|
785
788
|
|
786
789
|
if (opts.always_use_long_format && opts.abbreviated_size == 0) {
|
@@ -876,10 +879,12 @@ int git_describe_options_init(git_describe_options *opts, unsigned int version)
|
|
876
879
|
return 0;
|
877
880
|
}
|
878
881
|
|
882
|
+
#ifndef GIT_DEPRECATE_HARD
|
879
883
|
int git_describe_init_options(git_describe_options *opts, unsigned int version)
|
880
884
|
{
|
881
885
|
return git_describe_options_init(opts, version);
|
882
886
|
}
|
887
|
+
#endif
|
883
888
|
|
884
889
|
int git_describe_format_options_init(git_describe_format_options *opts, unsigned int version)
|
885
890
|
{
|
@@ -888,7 +893,9 @@ int git_describe_format_options_init(git_describe_format_options *opts, unsigned
|
|
888
893
|
return 0;
|
889
894
|
}
|
890
895
|
|
896
|
+
#ifndef GIT_DEPRECATE_HARD
|
891
897
|
int git_describe_init_format_options(git_describe_format_options *opts, unsigned int version)
|
892
898
|
{
|
893
899
|
return git_describe_format_options_init(opts, version);
|
894
900
|
}
|
901
|
+
#endif
|
data/vendor/libgit2/src/diff.c
CHANGED
@@ -7,11 +7,15 @@
|
|
7
7
|
|
8
8
|
#include "diff.h"
|
9
9
|
|
10
|
-
#include "
|
11
|
-
#include "diff_generate.h"
|
10
|
+
#include "common.h"
|
12
11
|
#include "patch.h"
|
12
|
+
#include "email.h"
|
13
13
|
#include "commit.h"
|
14
14
|
#include "index.h"
|
15
|
+
#include "diff_generate.h"
|
16
|
+
|
17
|
+
#include "git2/version.h"
|
18
|
+
#include "git2/email.h"
|
15
19
|
|
16
20
|
struct patch_id_args {
|
17
21
|
git_hash_ctx ctx;
|
@@ -32,11 +36,6 @@ GIT_INLINE(const char *) diff_delta__path(const git_diff_delta *delta)
|
|
32
36
|
return str;
|
33
37
|
}
|
34
38
|
|
35
|
-
const char *git_diff_delta__path(const git_diff_delta *delta)
|
36
|
-
{
|
37
|
-
return diff_delta__path(delta);
|
38
|
-
}
|
39
|
-
|
40
39
|
int git_diff_delta__cmp(const void *a, const void *b)
|
41
40
|
{
|
42
41
|
const git_diff_delta *da = a, *db = b;
|
@@ -82,7 +81,7 @@ void git_diff_addref(git_diff *diff)
|
|
82
81
|
|
83
82
|
size_t git_diff_num_deltas(const git_diff *diff)
|
84
83
|
{
|
85
|
-
|
84
|
+
GIT_ASSERT_ARG(diff);
|
86
85
|
return diff->deltas.length;
|
87
86
|
}
|
88
87
|
|
@@ -91,7 +90,7 @@ size_t git_diff_num_deltas_of_type(const git_diff *diff, git_delta_t type)
|
|
91
90
|
size_t i, count = 0;
|
92
91
|
const git_diff_delta *delta;
|
93
92
|
|
94
|
-
|
93
|
+
GIT_ASSERT_ARG(diff);
|
95
94
|
|
96
95
|
git_vector_foreach(&diff->deltas, i, delta) {
|
97
96
|
count += (delta->status == type);
|
@@ -102,7 +101,7 @@ size_t git_diff_num_deltas_of_type(const git_diff *diff, git_delta_t type)
|
|
102
101
|
|
103
102
|
const git_diff_delta *git_diff_get_delta(const git_diff *diff, size_t idx)
|
104
103
|
{
|
105
|
-
|
104
|
+
GIT_ASSERT_ARG_WITH_RETVAL(diff, NULL);
|
106
105
|
return git_vector_get(&diff->deltas, idx);
|
107
106
|
}
|
108
107
|
|
@@ -113,7 +112,7 @@ int git_diff_is_sorted_icase(const git_diff *diff)
|
|
113
112
|
|
114
113
|
int git_diff_get_perfdata(git_diff_perfdata *out, const git_diff *diff)
|
115
114
|
{
|
116
|
-
|
115
|
+
GIT_ASSERT_ARG(out);
|
117
116
|
GIT_ERROR_CHECK_VERSION(out, GIT_DIFF_PERFDATA_VERSION, "git_diff_perfdata");
|
118
117
|
out->stat_calls = diff->perf.stat_calls;
|
119
118
|
out->oid_calculations = diff->perf.oid_calculations;
|
@@ -132,7 +131,7 @@ int git_diff_foreach(
|
|
132
131
|
git_diff_delta *delta;
|
133
132
|
size_t idx;
|
134
133
|
|
135
|
-
|
134
|
+
GIT_ASSERT_ARG(diff);
|
136
135
|
|
137
136
|
git_vector_foreach(&diff->deltas, idx, delta) {
|
138
137
|
git_patch *patch;
|
@@ -155,164 +154,31 @@ int git_diff_foreach(
|
|
155
154
|
return error;
|
156
155
|
}
|
157
156
|
|
158
|
-
|
159
|
-
git_buf *out,
|
160
|
-
const git_oid *id,
|
161
|
-
const git_signature *author,
|
162
|
-
const char *summary,
|
163
|
-
const char *body,
|
164
|
-
size_t patch_no,
|
165
|
-
size_t total_patches,
|
166
|
-
bool exclude_patchno_marker)
|
167
|
-
{
|
168
|
-
char idstr[GIT_OID_HEXSZ + 1];
|
169
|
-
char date_str[GIT_DATE_RFC2822_SZ];
|
170
|
-
int error = 0;
|
171
|
-
|
172
|
-
git_oid_fmt(idstr, id);
|
173
|
-
idstr[GIT_OID_HEXSZ] = '\0';
|
174
|
-
|
175
|
-
if ((error = git__date_rfc2822_fmt(date_str, sizeof(date_str),
|
176
|
-
&author->when)) < 0)
|
177
|
-
return error;
|
178
|
-
|
179
|
-
error = git_buf_printf(out,
|
180
|
-
"From %s Mon Sep 17 00:00:00 2001\n" \
|
181
|
-
"From: %s <%s>\n" \
|
182
|
-
"Date: %s\n" \
|
183
|
-
"Subject: ",
|
184
|
-
idstr,
|
185
|
-
author->name, author->email,
|
186
|
-
date_str);
|
187
|
-
|
188
|
-
if (error < 0)
|
189
|
-
return error;
|
190
|
-
|
191
|
-
if (!exclude_patchno_marker) {
|
192
|
-
if (total_patches == 1) {
|
193
|
-
error = git_buf_puts(out, "[PATCH] ");
|
194
|
-
} else {
|
195
|
-
error = git_buf_printf(out, "[PATCH %"PRIuZ"/%"PRIuZ"] ",
|
196
|
-
patch_no, total_patches);
|
197
|
-
}
|
198
|
-
|
199
|
-
if (error < 0)
|
200
|
-
return error;
|
201
|
-
}
|
202
|
-
|
203
|
-
error = git_buf_printf(out, "%s\n\n", summary);
|
204
|
-
|
205
|
-
if (body) {
|
206
|
-
git_buf_puts(out, body);
|
207
|
-
|
208
|
-
if (out->ptr[out->size - 1] != '\n')
|
209
|
-
git_buf_putc(out, '\n');
|
210
|
-
}
|
211
|
-
|
212
|
-
return error;
|
213
|
-
}
|
214
|
-
|
215
|
-
int git_diff_format_email__append_patches_tobuf(
|
216
|
-
git_buf *out,
|
217
|
-
git_diff *diff)
|
218
|
-
{
|
219
|
-
size_t i, deltas;
|
220
|
-
int error = 0;
|
221
|
-
|
222
|
-
deltas = git_diff_num_deltas(diff);
|
223
|
-
|
224
|
-
for (i = 0; i < deltas; ++i) {
|
225
|
-
git_patch *patch = NULL;
|
226
|
-
|
227
|
-
if ((error = git_patch_from_diff(&patch, diff, i)) >= 0)
|
228
|
-
error = git_patch_to_buf(out, patch);
|
229
|
-
|
230
|
-
git_patch_free(patch);
|
231
|
-
|
232
|
-
if (error < 0)
|
233
|
-
break;
|
234
|
-
}
|
235
|
-
|
236
|
-
return error;
|
237
|
-
}
|
157
|
+
#ifndef GIT_DEPRECATE_HARD
|
238
158
|
|
239
159
|
int git_diff_format_email(
|
240
160
|
git_buf *out,
|
241
161
|
git_diff *diff,
|
242
162
|
const git_diff_format_email_options *opts)
|
243
163
|
{
|
244
|
-
|
245
|
-
char *summary = NULL, *loc = NULL;
|
246
|
-
bool ignore_marker;
|
247
|
-
unsigned int format_flags = 0;
|
248
|
-
size_t allocsize;
|
164
|
+
git_email_create_options email_create_opts = GIT_EMAIL_CREATE_OPTIONS_INIT;
|
249
165
|
int error;
|
250
166
|
|
251
|
-
|
252
|
-
|
167
|
+
GIT_ASSERT_ARG(out);
|
168
|
+
GIT_ASSERT_ARG(diff);
|
169
|
+
GIT_ASSERT_ARG(opts && opts->summary && opts->id && opts->author);
|
253
170
|
|
254
171
|
GIT_ERROR_CHECK_VERSION(opts,
|
255
172
|
GIT_DIFF_FORMAT_EMAIL_OPTIONS_VERSION,
|
256
173
|
"git_format_email_options");
|
257
174
|
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
if (!ignore_marker) {
|
262
|
-
if (opts->patch_no > opts->total_patches) {
|
263
|
-
git_error_set(GIT_ERROR_INVALID,
|
264
|
-
"patch %"PRIuZ" out of range. max %"PRIuZ,
|
265
|
-
opts->patch_no, opts->total_patches);
|
266
|
-
return -1;
|
267
|
-
}
|
268
|
-
|
269
|
-
if (opts->patch_no == 0) {
|
270
|
-
git_error_set(GIT_ERROR_INVALID,
|
271
|
-
"invalid patch no %"PRIuZ". should be >0", opts->patch_no);
|
272
|
-
return -1;
|
273
|
-
}
|
274
|
-
}
|
275
|
-
|
276
|
-
/* the summary we receive may not be clean.
|
277
|
-
* it could potentially contain new line characters
|
278
|
-
* or not be set, sanitize, */
|
279
|
-
if ((loc = strpbrk(opts->summary, "\r\n")) != NULL) {
|
280
|
-
size_t offset = 0;
|
281
|
-
|
282
|
-
if ((offset = (loc - opts->summary)) == 0) {
|
283
|
-
git_error_set(GIT_ERROR_INVALID, "summary is empty");
|
284
|
-
error = -1;
|
285
|
-
goto on_error;
|
286
|
-
}
|
287
|
-
|
288
|
-
GIT_ERROR_CHECK_ALLOC_ADD(&allocsize, offset, 1);
|
289
|
-
summary = git__calloc(allocsize, sizeof(char));
|
290
|
-
GIT_ERROR_CHECK_ALLOC(summary);
|
291
|
-
|
292
|
-
strncpy(summary, opts->summary, offset);
|
293
|
-
}
|
294
|
-
|
295
|
-
error = git_diff_format_email__append_header_tobuf(out,
|
296
|
-
opts->id, opts->author, summary == NULL ? opts->summary : summary,
|
297
|
-
opts->body, opts->patch_no, opts->total_patches, ignore_marker);
|
298
|
-
|
299
|
-
if (error < 0)
|
300
|
-
goto on_error;
|
175
|
+
if ((opts->flags & GIT_DIFF_FORMAT_EMAIL_EXCLUDE_SUBJECT_PATCH_MARKER) != 0)
|
176
|
+
email_create_opts.subject_prefix = "";
|
301
177
|
|
302
|
-
format_flags = GIT_DIFF_STATS_FULL | GIT_DIFF_STATS_INCLUDE_SUMMARY;
|
303
178
|
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
(error = git_buf_putc(out, '\n')) < 0 ||
|
308
|
-
(error = git_diff_format_email__append_patches_tobuf(out, diff)) < 0)
|
309
|
-
goto on_error;
|
310
|
-
|
311
|
-
error = git_buf_puts(out, "--\nlibgit2 " LIBGIT2_VERSION "\n\n");
|
312
|
-
|
313
|
-
on_error:
|
314
|
-
git__free(summary);
|
315
|
-
git_diff_stats_free(stats);
|
179
|
+
error = git_email__append_from_diff(out, diff, opts->patch_no,
|
180
|
+
opts->total_patches, opts->id, opts->summary, opts->body,
|
181
|
+
opts->author, &email_create_opts);
|
316
182
|
|
317
183
|
return error;
|
318
184
|
}
|
@@ -327,49 +193,38 @@ int git_diff_commit_as_email(
|
|
327
193
|
const git_diff_options *diff_opts)
|
328
194
|
{
|
329
195
|
git_diff *diff = NULL;
|
330
|
-
|
331
|
-
|
196
|
+
git_email_create_options opts = GIT_EMAIL_CREATE_OPTIONS_INIT;
|
197
|
+
const git_oid *commit_id;
|
198
|
+
const char *summary, *body;
|
199
|
+
const git_signature *author;
|
332
200
|
int error;
|
333
201
|
|
334
|
-
|
202
|
+
GIT_ASSERT_ARG(out);
|
203
|
+
GIT_ASSERT_ARG(repo);
|
204
|
+
GIT_ASSERT_ARG(commit);
|
205
|
+
|
206
|
+
commit_id = git_commit_id(commit);
|
207
|
+
summary = git_commit_summary(commit);
|
208
|
+
body = git_commit_body(commit);
|
209
|
+
author = git_commit_author(commit);
|
335
210
|
|
336
|
-
|
337
|
-
|
338
|
-
opts.total_patches = total_patches;
|
339
|
-
opts.id = git_commit_id(commit);
|
340
|
-
opts.summary = git_commit_summary(commit);
|
341
|
-
opts.body = git_commit_body(commit);
|
342
|
-
opts.author = git_commit_author(commit);
|
211
|
+
if ((flags & GIT_DIFF_FORMAT_EMAIL_EXCLUDE_SUBJECT_PATCH_MARKER) != 0)
|
212
|
+
opts.subject_prefix = "";
|
343
213
|
|
344
214
|
if ((error = git_diff__commit(&diff, repo, commit, diff_opts)) < 0)
|
345
215
|
return error;
|
346
216
|
|
347
|
-
error =
|
217
|
+
error = git_email_create_from_diff(out, diff, patch_no, total_patches, commit_id, summary, body, author, &opts);
|
348
218
|
|
349
219
|
git_diff_free(diff);
|
350
220
|
return error;
|
351
221
|
}
|
352
222
|
|
353
|
-
int git_diff_options_init(git_diff_options *opts, unsigned int version)
|
354
|
-
{
|
355
|
-
GIT_INIT_STRUCTURE_FROM_TEMPLATE(
|
356
|
-
opts, version, git_diff_options, GIT_DIFF_OPTIONS_INIT);
|
357
|
-
return 0;
|
358
|
-
}
|
359
|
-
|
360
223
|
int git_diff_init_options(git_diff_options *opts, unsigned int version)
|
361
224
|
{
|
362
225
|
return git_diff_options_init(opts, version);
|
363
226
|
}
|
364
227
|
|
365
|
-
int git_diff_find_options_init(
|
366
|
-
git_diff_find_options *opts, unsigned int version)
|
367
|
-
{
|
368
|
-
GIT_INIT_STRUCTURE_FROM_TEMPLATE(
|
369
|
-
opts, version, git_diff_find_options, GIT_DIFF_FIND_OPTIONS_INIT);
|
370
|
-
return 0;
|
371
|
-
}
|
372
|
-
|
373
228
|
int git_diff_find_init_options(
|
374
229
|
git_diff_find_options *opts, unsigned int version)
|
375
230
|
{
|
@@ -391,6 +246,23 @@ int git_diff_format_email_init_options(
|
|
391
246
|
return git_diff_format_email_options_init(opts, version);
|
392
247
|
}
|
393
248
|
|
249
|
+
#endif
|
250
|
+
|
251
|
+
int git_diff_options_init(git_diff_options *opts, unsigned int version)
|
252
|
+
{
|
253
|
+
GIT_INIT_STRUCTURE_FROM_TEMPLATE(
|
254
|
+
opts, version, git_diff_options, GIT_DIFF_OPTIONS_INIT);
|
255
|
+
return 0;
|
256
|
+
}
|
257
|
+
|
258
|
+
int git_diff_find_options_init(
|
259
|
+
git_diff_find_options *opts, unsigned int version)
|
260
|
+
{
|
261
|
+
GIT_INIT_STRUCTURE_FROM_TEMPLATE(
|
262
|
+
opts, version, git_diff_find_options, GIT_DIFF_FIND_OPTIONS_INIT);
|
263
|
+
return 0;
|
264
|
+
}
|
265
|
+
|
394
266
|
static int flush_hunk(git_oid *result, git_hash_ctx *ctx)
|
395
267
|
{
|
396
268
|
git_oid hash;
|
@@ -426,7 +298,7 @@ static void strip_spaces(git_buf *buf)
|
|
426
298
|
git_buf_truncate(buf, len);
|
427
299
|
}
|
428
300
|
|
429
|
-
int
|
301
|
+
static int diff_patchid_print_callback_to_buf(
|
430
302
|
const git_diff_delta *delta,
|
431
303
|
const git_diff_hunk *hunk,
|
432
304
|
const git_diff_line *line,
|
@@ -485,7 +357,7 @@ int git_diff_patchid(git_oid *out, git_diff *diff, git_diff_patchid_options *opt
|
|
485
357
|
|
486
358
|
if ((error = git_diff_print(diff,
|
487
359
|
GIT_DIFF_FORMAT_PATCH_ID,
|
488
|
-
|
360
|
+
diff_patchid_print_callback_to_buf,
|
489
361
|
&args)) < 0)
|
490
362
|
goto out;
|
491
363
|
|