rugged 0.17.0b2 → 0.17.0.b6
Sign up to get free protection for your applications and to get access to all the features.
- data/Rakefile +10 -11
- data/ext/rugged/extconf.rb +5 -13
- data/ext/rugged/rugged_commit.c +2 -5
- data/ext/rugged/rugged_reference.c +29 -28
- data/ext/rugged/rugged_remote.c +1 -1
- data/ext/rugged/rugged_repo.c +4 -1
- data/ext/rugged/rugged_tree.c +20 -19
- data/lib/rugged/commit.rb +5 -1
- data/lib/rugged/repository.rb +6 -4
- data/lib/rugged/version.rb +1 -1
- data/test/config_test.rb +1 -1
- data/test/index_test.rb +4 -2
- data/test/object_test.rb +3 -3
- data/test/reference_test.rb +66 -1
- data/test/repo_test.rb +4 -4
- data/test/tree_test.rb +1 -1
- data/test/walker_test.rb +1 -1
- data/vendor/libgit2/Makefile.embed +42 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/http-parser/http_parser.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/http-parser/http_parser.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/config.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regcomp.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regex.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regex.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regex_internal.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regex_internal.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/regex/regexec.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/adler32.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/crc32.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/crc32.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/deflate.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/deflate.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inffast.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inffast.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inffixed.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inflate.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inflate.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inftrees.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/inftrees.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/trees.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/trees.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/zconf.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/zlib.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/zutil.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/deps/zlib/zutil.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2.h +6 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/attr.h +35 -20
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/blob.h +1 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/branch.h +62 -24
- data/vendor/libgit2/include/git2/checkout.h +66 -0
- data/vendor/libgit2/include/git2/clone.h +59 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/commit.h +22 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/common.h +27 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/config.h +22 -4
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/diff.h +20 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/errors.h +2 -37
- data/vendor/libgit2/include/git2/ignore.h +74 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/index.h +37 -5
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/indexer.h +2 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/inttypes.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/merge.h +10 -0
- data/vendor/libgit2/include/git2/message.h +43 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/net.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/notes.h +24 -20
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/object.h +18 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/odb.h +16 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/odb_backend.h +8 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/oid.h +26 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/reflog.h +39 -9
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/refs.h +55 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/refspec.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/remote.h +68 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/repository.h +39 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/reset.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/revparse.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/revwalk.h +2 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/signature.h +3 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/status.h +5 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/stdint.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/submodule.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/tag.h +3 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/threads.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/tree.h +77 -20
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/types.h +14 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/version.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/include/git2/windows.h +0 -0
- data/vendor/libgit2/src/amiga/map.c +51 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/attr.c +39 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/attr.h +1 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/attr_file.c +2 -16
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/attr_file.h +4 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/blob.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/blob.h +0 -0
- data/vendor/libgit2/src/branch.c +294 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/bswap.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/buffer.c +40 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/buffer.h +22 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/cache.c +1 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/cache.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/cc-compat.h +0 -0
- data/vendor/libgit2/src/checkout.c +230 -0
- data/vendor/libgit2/src/clone.c +254 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/commit.c +42 -16
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/commit.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/common.h +3 -9
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/compat/fnmatch.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/compat/fnmatch.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config.c +15 -5
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config_cache.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config_file.c +86 -19
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/config_file.h +16 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/crlf.c +92 -4
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/date.c +20 -20
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/delta-apply.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/delta-apply.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/diff.c +45 -18
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/diff.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/diff_output.c +63 -46
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/errors.c +0 -0
- data/vendor/libgit2/src/fetch.c +380 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/fetch.h +1 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/filebuf.c +7 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/filebuf.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/fileops.c +16 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/fileops.h +10 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/filter.c +38 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/filter.h +15 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/global.c +5 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/global.h +2 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/hash.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/hash.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/ignore.c +50 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/ignore.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/index.c +95 -28
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/index.h +5 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/indexer.c +27 -25
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/iterator.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/iterator.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/khash.h +6 -4
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/map.h +4 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/message.c +27 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/message.h +2 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/mwindow.c +54 -10
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/mwindow.h +1 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/netops.c +48 -38
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/netops.h +7 -4
- data/vendor/libgit2/src/notes.c +610 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/notes.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/object.c +73 -2
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/odb.c +20 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/odb.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/odb_loose.c +89 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/odb_pack.c +61 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/oid.c +1 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/oidmap.h +1 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pack.c +49 -4
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pack.h +5 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/path.c +144 -21
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/path.h +46 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pkt.c +30 -8
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pkt.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pool.c +7 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pool.h +7 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/posix.c +92 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/posix.h +36 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/ppc/sha1.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/ppc/sha1.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pqueue.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/pqueue.h +0 -0
- data/vendor/libgit2/src/protocol.c +88 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/protocol.h +3 -9
- data/vendor/libgit2/src/reflog.c +489 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/reflog.h +3 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/refs.c +95 -52
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/refs.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/refspec.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/refspec.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/remote.c +130 -8
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/remote.h +6 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/repository.c +167 -42
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/repository.h +7 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/reset.c +1 -1
- data/vendor/libgit2/src/revparse.c +830 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/revwalk.c +83 -15
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/sha1.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/sha1.h +5 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/sha1_lookup.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/sha1_lookup.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/signature.c +19 -5
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/signature.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/status.c +24 -18
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/strmap.h +1 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/submodule.c +3 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tag.c +2 -9
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tag.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/thread-utils.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/thread-utils.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/transport.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/transport.h +13 -9
- data/vendor/libgit2/src/transports/git.c +245 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/transports/http.c +93 -336
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/transports/local.c +35 -32
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tree-cache.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tree-cache.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tree.c +214 -124
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tree.h +7 -3
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/tsort.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/unix/map.c +2 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/unix/posix.h +2 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/util.c +30 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/util.h +13 -6
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/vector.c +1 -1
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/vector.h +5 -5
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/dir.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/dir.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/map.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/mingw-compat.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/msvc-compat.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/posix.h +1 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/posix_w32.c +17 -1
- data/vendor/libgit2/src/win32/precompiled.c +1 -0
- data/vendor/libgit2/src/win32/precompiled.h +19 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/pthread.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/pthread.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/utf-conv.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/win32/utf-conv.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xdiff.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xdiffi.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xdiffi.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xemit.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xemit.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xhistogram.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xinclude.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xmacros.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xmerge.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xpatience.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xprepare.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xprepare.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xtypes.h +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xutils.c +0 -0
- data/{ext/rugged/vendor/libgit2-dist → vendor/libgit2}/src/xdiff/xutils.h +0 -0
- metadata +265 -348
- data/ext/rugged/vendor/libgit2-dist.tar.gz +0 -0
- data/ext/rugged/vendor/libgit2-dist/examples/diff.c +0 -238
- data/ext/rugged/vendor/libgit2-dist/examples/general.c +0 -451
- data/ext/rugged/vendor/libgit2-dist/examples/network/common.h +0 -14
- data/ext/rugged/vendor/libgit2-dist/examples/network/fetch.c +0 -113
- data/ext/rugged/vendor/libgit2-dist/examples/network/git2.c +0 -62
- data/ext/rugged/vendor/libgit2-dist/examples/network/index-pack.c +0 -102
- data/ext/rugged/vendor/libgit2-dist/examples/network/ls-remote.c +0 -76
- data/ext/rugged/vendor/libgit2-dist/examples/showindex.c +0 -43
- data/ext/rugged/vendor/libgit2-dist/src/branch.c +0 -208
- data/ext/rugged/vendor/libgit2-dist/src/branch.h +0 -17
- data/ext/rugged/vendor/libgit2-dist/src/fetch.c +0 -200
- data/ext/rugged/vendor/libgit2-dist/src/notes.c +0 -548
- data/ext/rugged/vendor/libgit2-dist/src/protocol.c +0 -58
- data/ext/rugged/vendor/libgit2-dist/src/reflog.c +0 -340
- data/ext/rugged/vendor/libgit2-dist/src/revparse.c +0 -748
- data/ext/rugged/vendor/libgit2-dist/src/transports/git.c +0 -477
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/attr_expect.h +0 -43
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/file.c +0 -226
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/flags.c +0 -108
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/lookup.c +0 -262
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/repo.c +0 -273
- data/ext/rugged/vendor/libgit2-dist/tests-clar/buf/basic.c +0 -29
- data/ext/rugged/vendor/libgit2-dist/tests-clar/clar_helpers.c +0 -181
- data/ext/rugged/vendor/libgit2-dist/tests-clar/clar_libgit2.h +0 -55
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/commit.c +0 -44
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/parse.c +0 -350
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/signature.c +0 -65
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/write.c +0 -140
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/add.c +0 -37
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/multivar.c +0 -151
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/new.c +0 -36
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/read.c +0 -221
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/stress.c +0 -61
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/write.c +0 -92
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/buffer.c +0 -613
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/dirent.c +0 -235
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/env.c +0 -115
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/errors.c +0 -60
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/filebuf.c +0 -92
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/hex.c +0 -22
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/oid.c +0 -18
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/path.c +0 -420
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/pool.c +0 -85
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/rmdir.c +0 -68
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/string.c +0 -28
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/strmap.c +0 -102
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/strtol.c +0 -37
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/vector.c +0 -191
- data/ext/rugged/vendor/libgit2-dist/tests-clar/date/date.c +0 -15
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/blob.c +0 -254
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/diff_helpers.c +0 -104
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/diff_helpers.h +0 -47
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/index.c +0 -92
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/iterator.c +0 -572
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/patch.c +0 -99
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/tree.c +0 -210
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/workdir.c +0 -543
- data/ext/rugged/vendor/libgit2-dist/tests-clar/index/read_tree.c +0 -46
- data/ext/rugged/vendor/libgit2-dist/tests-clar/index/rename.c +0 -50
- data/ext/rugged/vendor/libgit2-dist/tests-clar/index/tests.c +0 -246
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/createremotethenload.c +0 -33
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/remotelocal.c +0 -137
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/remotes.c +0 -183
- data/ext/rugged/vendor/libgit2-dist/tests-clar/notes/notes.c +0 -133
- data/ext/rugged/vendor/libgit2-dist/tests-clar/notes/notesref.c +0 -57
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/filter.c +0 -125
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/fromchunks.c +0 -87
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/write.c +0 -69
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/commit/commitstagedfile.c +0 -126
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/lookup.c +0 -63
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/message.c +0 -171
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/chars.c +0 -41
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/compare.c +0 -124
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/convert.c +0 -75
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/data.h +0 -323
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/fromstr.c +0 -30
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/hash.c +0 -166
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/short.c +0 -94
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/size.c +0 -13
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/type2string.c +0 -54
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/write.c +0 -455
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/peel.c +0 -56
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/read.c +0 -130
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/write.c +0 -192
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tree/frompath.c +0 -81
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tree/read.c +0 -75
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tree/write.c +0 -84
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/loose.c +0 -84
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/loose_data.h +0 -522
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/mixed.c +0 -24
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/pack_data.h +0 -151
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/packed.c +0 -78
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/sorting.c +0 -71
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/create.c +0 -113
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/delete.c +0 -91
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/listall.c +0 -78
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/move.c +0 -72
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/crashes.c +0 -17
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/create.c +0 -149
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/delete.c +0 -85
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/list.c +0 -53
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/listall.c +0 -36
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/lookup.c +0 -42
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/normalize.c +0 -200
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/overwrite.c +0 -136
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/pack.c +0 -67
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/read.c +0 -194
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/reflog.c +0 -123
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/rename.c +0 -339
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/revparse.c +0 -174
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/unicode.c +0 -42
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/discover.c +0 -142
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/getters.c +0 -86
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/init.c +0 -249
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/open.c +0 -282
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/setters.c +0 -80
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/mixed.c +0 -47
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/reset_helpers.c +0 -10
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/reset_helpers.h +0 -6
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/soft.c +0 -102
- data/ext/rugged/vendor/libgit2-dist/tests-clar/revwalk/basic.c +0 -181
- data/ext/rugged/vendor/libgit2-dist/tests-clar/revwalk/mergebase.c +0 -148
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/ignore.c +0 -147
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/single.c +0 -29
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_data.h +0 -202
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_helpers.c +0 -49
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_helpers.h +0 -33
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/submodules.c +0 -112
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/worktree.c +0 -649
- data/ext/rugged/vendor/libgit2-dist/tests-clar/threads/basic.c +0 -20
@@ -93,7 +93,7 @@ int git_commit_create(
|
|
93
93
|
int parent_count,
|
94
94
|
const git_commit *parents[])
|
95
95
|
{
|
96
|
-
git_buf commit = GIT_BUF_INIT
|
96
|
+
git_buf commit = GIT_BUF_INIT;
|
97
97
|
int i;
|
98
98
|
git_odb *odb;
|
99
99
|
|
@@ -114,15 +114,9 @@ int git_commit_create(
|
|
114
114
|
|
115
115
|
git_buf_putc(&commit, '\n');
|
116
116
|
|
117
|
-
|
118
|
-
if (git_message_prettify(&cleaned_message, message, 1) < 0)
|
117
|
+
if (git_buf_puts(&commit, message) < 0)
|
119
118
|
goto on_error;
|
120
119
|
|
121
|
-
if (git_buf_puts(&commit, git_buf_cstr(&cleaned_message)) < 0)
|
122
|
-
goto on_error;
|
123
|
-
|
124
|
-
git_buf_free(&cleaned_message);
|
125
|
-
|
126
120
|
if (git_repository_odb__weakptr(&odb, repo) < 0)
|
127
121
|
goto on_error;
|
128
122
|
|
@@ -138,7 +132,6 @@ int git_commit_create(
|
|
138
132
|
|
139
133
|
on_error:
|
140
134
|
git_buf_free(&commit);
|
141
|
-
git_buf_free(&cleaned_message);
|
142
135
|
giterr_set(GITERR_OBJECT, "Failed to create commit.");
|
143
136
|
return -1;
|
144
137
|
}
|
@@ -233,22 +226,28 @@ GIT_COMMIT_GETTER(const char *, message, commit->message)
|
|
233
226
|
GIT_COMMIT_GETTER(const char *, message_encoding, commit->message_encoding)
|
234
227
|
GIT_COMMIT_GETTER(git_time_t, time, commit->committer->when.time)
|
235
228
|
GIT_COMMIT_GETTER(int, time_offset, commit->committer->when.offset)
|
236
|
-
GIT_COMMIT_GETTER(unsigned int, parentcount, commit->parent_oids.length)
|
229
|
+
GIT_COMMIT_GETTER(unsigned int, parentcount, (unsigned int)commit->parent_oids.length)
|
237
230
|
GIT_COMMIT_GETTER(const git_oid *, tree_oid, &commit->tree_oid);
|
238
231
|
|
239
|
-
|
240
232
|
int git_commit_tree(git_tree **tree_out, git_commit *commit)
|
241
233
|
{
|
242
234
|
assert(commit);
|
243
235
|
return git_tree_lookup(tree_out, commit->object.repo, &commit->tree_oid);
|
244
236
|
}
|
245
237
|
|
238
|
+
const git_oid *git_commit_parent_oid(git_commit *commit, unsigned int n)
|
239
|
+
{
|
240
|
+
assert(commit);
|
241
|
+
|
242
|
+
return git_vector_get(&commit->parent_oids, n);
|
243
|
+
}
|
244
|
+
|
246
245
|
int git_commit_parent(git_commit **parent, git_commit *commit, unsigned int n)
|
247
246
|
{
|
248
|
-
git_oid *parent_oid;
|
247
|
+
const git_oid *parent_oid;
|
249
248
|
assert(commit);
|
250
249
|
|
251
|
-
parent_oid =
|
250
|
+
parent_oid = git_commit_parent_oid(commit, n);
|
252
251
|
if (parent_oid == NULL) {
|
253
252
|
giterr_set(GITERR_INVALID, "Parent %u does not exist", n);
|
254
253
|
return GIT_ENOTFOUND;
|
@@ -257,9 +256,36 @@ int git_commit_parent(git_commit **parent, git_commit *commit, unsigned int n)
|
|
257
256
|
return git_commit_lookup(parent, commit->object.repo, parent_oid);
|
258
257
|
}
|
259
258
|
|
260
|
-
|
259
|
+
int git_commit_nth_gen_ancestor(
|
260
|
+
git_commit **ancestor,
|
261
|
+
const git_commit *commit,
|
262
|
+
unsigned int n)
|
261
263
|
{
|
262
|
-
|
264
|
+
git_commit *current, *parent;
|
265
|
+
int error;
|
263
266
|
|
264
|
-
|
267
|
+
assert(ancestor && commit);
|
268
|
+
|
269
|
+
current = (git_commit *)commit;
|
270
|
+
|
271
|
+
if (n == 0)
|
272
|
+
return git_commit_lookup(
|
273
|
+
ancestor,
|
274
|
+
commit->object.repo,
|
275
|
+
git_object_id((const git_object *)commit));
|
276
|
+
|
277
|
+
while (n--) {
|
278
|
+
error = git_commit_parent(&parent, (git_commit *)current, 0);
|
279
|
+
|
280
|
+
if (current != commit)
|
281
|
+
git_commit_free(current);
|
282
|
+
|
283
|
+
if (error < 0)
|
284
|
+
return error;
|
285
|
+
|
286
|
+
current = parent;
|
287
|
+
}
|
288
|
+
|
289
|
+
*ancestor = parent;
|
290
|
+
return 0;
|
265
291
|
}
|
File without changes
|
@@ -24,6 +24,7 @@
|
|
24
24
|
|
25
25
|
# include <io.h>
|
26
26
|
# include <direct.h>
|
27
|
+
# include <winsock2.h>
|
27
28
|
# include <windows.h>
|
28
29
|
# include "win32/msvc-compat.h"
|
29
30
|
# include "win32/mingw-compat.h"
|
@@ -48,15 +49,6 @@
|
|
48
49
|
|
49
50
|
#include <regex.h>
|
50
51
|
|
51
|
-
extern void git___throw(const char *, ...) GIT_FORMAT_PRINTF(1, 2);
|
52
|
-
#define git__throw(error, ...) \
|
53
|
-
(git___throw(__VA_ARGS__), error)
|
54
|
-
|
55
|
-
extern void git___rethrow(const char *, ...) GIT_FORMAT_PRINTF(1, 2);
|
56
|
-
#define git__rethrow(error, ...) \
|
57
|
-
(git___rethrow(__VA_ARGS__), error)
|
58
|
-
|
59
|
-
|
60
52
|
#define GITERR_CHECK_ALLOC(ptr) if (ptr == NULL) { return -1; }
|
61
53
|
|
62
54
|
void giterr_set_oom(void);
|
@@ -67,5 +59,7 @@ void giterr_set_regex(const regex_t *regex, int error_code);
|
|
67
59
|
|
68
60
|
#include "util.h"
|
69
61
|
|
62
|
+
typedef struct git_transport git_transport;
|
63
|
+
typedef struct gitno_buffer gitno_buffer;
|
70
64
|
|
71
65
|
#endif /* INCLUDE_common_h__ */
|
File without changes
|
File without changes
|
@@ -136,17 +136,27 @@ int git_config_add_file(git_config *cfg, git_config_file *file, int priority)
|
|
136
136
|
* Loop over all the variables
|
137
137
|
*/
|
138
138
|
|
139
|
-
int git_config_foreach(
|
139
|
+
int git_config_foreach(
|
140
|
+
git_config *cfg, int (*fn)(const char *, const char *, void *), void *data)
|
141
|
+
{
|
142
|
+
return git_config_foreach_match(cfg, NULL, fn, data);
|
143
|
+
}
|
144
|
+
|
145
|
+
int git_config_foreach_match(
|
146
|
+
git_config *cfg,
|
147
|
+
const char *regexp,
|
148
|
+
int (*fn)(const char *, const char *, void *),
|
149
|
+
void *data)
|
140
150
|
{
|
141
151
|
int ret = 0;
|
142
152
|
unsigned int i;
|
143
153
|
file_internal *internal;
|
144
154
|
git_config_file *file;
|
145
155
|
|
146
|
-
for(i = 0; i < cfg->files.length && ret == 0; ++i) {
|
156
|
+
for (i = 0; i < cfg->files.length && ret == 0; ++i) {
|
147
157
|
internal = git_vector_get(&cfg->files, i);
|
148
158
|
file = internal->file;
|
149
|
-
ret = file->foreach(file, fn, data);
|
159
|
+
ret = file->foreach(file, regexp, fn, data);
|
150
160
|
}
|
151
161
|
|
152
162
|
return ret;
|
@@ -400,7 +410,7 @@ int git_config_get_multivar(git_config *cfg, const char *name, const char *regex
|
|
400
410
|
file_internal *internal;
|
401
411
|
git_config_file *file;
|
402
412
|
int ret = GIT_ENOTFOUND;
|
403
|
-
|
413
|
+
size_t i;
|
404
414
|
|
405
415
|
assert(cfg->files.length);
|
406
416
|
|
@@ -424,7 +434,7 @@ int git_config_set_multivar(git_config *cfg, const char *name, const char *regex
|
|
424
434
|
file_internal *internal;
|
425
435
|
git_config_file *file;
|
426
436
|
int ret = GIT_ENOTFOUND;
|
427
|
-
|
437
|
+
size_t i;
|
428
438
|
|
429
439
|
for (i = cfg->files.length; i > 0; --i) {
|
430
440
|
internal = git_vector_get(&cfg->files, i - 1);
|
File without changes
|
File without changes
|
@@ -87,6 +87,7 @@ typedef struct {
|
|
87
87
|
static int config_parse(diskfile_backend *cfg_file);
|
88
88
|
static int parse_variable(diskfile_backend *cfg, char **var_name, char **var_value);
|
89
89
|
static int config_write(diskfile_backend *cfg, const char *key, const regex_t *preg, const char *value);
|
90
|
+
static char *escape_value(const char *ptr);
|
90
91
|
|
91
92
|
static void set_parse_error(diskfile_backend *backend, int col, const char *error_str)
|
92
93
|
{
|
@@ -187,34 +188,57 @@ static void backend_free(git_config_file *_backend)
|
|
187
188
|
git__free(backend);
|
188
189
|
}
|
189
190
|
|
190
|
-
static int file_foreach(
|
191
|
+
static int file_foreach(
|
192
|
+
git_config_file *backend,
|
193
|
+
const char *regexp,
|
194
|
+
int (*fn)(const char *, const char *, void *),
|
195
|
+
void *data)
|
191
196
|
{
|
192
197
|
diskfile_backend *b = (diskfile_backend *)backend;
|
193
198
|
cvar_t *var;
|
194
199
|
const char *key;
|
200
|
+
regex_t regex;
|
201
|
+
int result = 0;
|
195
202
|
|
196
203
|
if (!b->values)
|
197
204
|
return 0;
|
198
205
|
|
206
|
+
if (regexp != NULL) {
|
207
|
+
if ((result = regcomp(®ex, regexp, REG_EXTENDED)) < 0) {
|
208
|
+
giterr_set_regex(®ex, result);
|
209
|
+
regfree(®ex);
|
210
|
+
return -1;
|
211
|
+
}
|
212
|
+
}
|
213
|
+
|
199
214
|
git_strmap_foreach(b->values, key, var,
|
200
|
-
|
201
|
-
if
|
202
|
-
|
215
|
+
for (; var != NULL; var = CVAR_LIST_NEXT(var)) {
|
216
|
+
/* skip non-matching keys if regexp was provided */
|
217
|
+
if (regexp && regexec(®ex, key, 0, NULL, 0) != 0)
|
218
|
+
continue;
|
203
219
|
|
204
|
-
|
205
|
-
|
220
|
+
/* abort iterator on non-zero return value */
|
221
|
+
if (fn(key, var->value, data)) {
|
222
|
+
result = GIT_EUSER;
|
223
|
+
goto cleanup;
|
224
|
+
}
|
225
|
+
}
|
206
226
|
);
|
207
227
|
|
208
|
-
|
228
|
+
cleanup:
|
229
|
+
if (regexp != NULL)
|
230
|
+
regfree(®ex);
|
231
|
+
|
232
|
+
return result;
|
209
233
|
}
|
210
234
|
|
211
235
|
static int config_set(git_config_file *cfg, const char *name, const char *value)
|
212
236
|
{
|
213
237
|
cvar_t *var = NULL, *old_var;
|
214
238
|
diskfile_backend *b = (diskfile_backend *)cfg;
|
215
|
-
char *key;
|
239
|
+
char *key, *esc_value = NULL;
|
216
240
|
khiter_t pos;
|
217
|
-
int rval;
|
241
|
+
int rval, ret;
|
218
242
|
|
219
243
|
if (normalize_name(name, &key) < 0)
|
220
244
|
return -1;
|
@@ -237,12 +261,17 @@ static int config_set(git_config_file *cfg, const char *name, const char *value)
|
|
237
261
|
if (value) {
|
238
262
|
tmp = git__strdup(value);
|
239
263
|
GITERR_CHECK_ALLOC(tmp);
|
264
|
+
esc_value = escape_value(value);
|
265
|
+
GITERR_CHECK_ALLOC(esc_value);
|
240
266
|
}
|
241
267
|
|
242
268
|
git__free(existing->value);
|
243
269
|
existing->value = tmp;
|
244
270
|
|
245
|
-
|
271
|
+
ret = config_write(b, existing->key, NULL, esc_value);
|
272
|
+
|
273
|
+
git__free(esc_value);
|
274
|
+
return ret;
|
246
275
|
}
|
247
276
|
|
248
277
|
var = git__malloc(sizeof(cvar_t));
|
@@ -256,13 +285,17 @@ static int config_set(git_config_file *cfg, const char *name, const char *value)
|
|
256
285
|
if (value) {
|
257
286
|
var->value = git__strdup(value);
|
258
287
|
GITERR_CHECK_ALLOC(var->value);
|
288
|
+
esc_value = escape_value(value);
|
289
|
+
GITERR_CHECK_ALLOC(esc_value);
|
259
290
|
}
|
260
291
|
|
261
|
-
if (config_write(b, key, NULL,
|
292
|
+
if (config_write(b, key, NULL, esc_value) < 0) {
|
293
|
+
git__free(esc_value);
|
262
294
|
cvar_free(var);
|
263
295
|
return -1;
|
264
296
|
}
|
265
297
|
|
298
|
+
git__free(esc_value);
|
266
299
|
git_strmap_insert2(b->values, key, var, old_var, rval);
|
267
300
|
if (rval < 0)
|
268
301
|
return -1;
|
@@ -327,6 +360,7 @@ static int config_get_multivar(
|
|
327
360
|
result = regcomp(®ex, regex_str, REG_EXTENDED);
|
328
361
|
if (result < 0) {
|
329
362
|
giterr_set_regex(®ex, result);
|
363
|
+
regfree(®ex);
|
330
364
|
return -1;
|
331
365
|
}
|
332
366
|
|
@@ -386,6 +420,7 @@ static int config_set_multivar(
|
|
386
420
|
if (result < 0) {
|
387
421
|
git__free(key);
|
388
422
|
giterr_set_regex(&preg, result);
|
423
|
+
regfree(&preg);
|
389
424
|
return -1;
|
390
425
|
}
|
391
426
|
|
@@ -950,9 +985,12 @@ static int write_section(git_filebuf *file, const char *key)
|
|
950
985
|
if (dot == NULL) {
|
951
986
|
git_buf_puts(&buf, key);
|
952
987
|
} else {
|
988
|
+
char *escaped;
|
953
989
|
git_buf_put(&buf, key, dot - key);
|
954
|
-
|
955
|
-
|
990
|
+
escaped = escape_value(dot + 1);
|
991
|
+
GITERR_CHECK_ALLOC(escaped);
|
992
|
+
git_buf_printf(&buf, " \"%s\"", escaped);
|
993
|
+
git__free(escaped);
|
956
994
|
}
|
957
995
|
git_buf_puts(&buf, "]\n");
|
958
996
|
|
@@ -1155,13 +1193,44 @@ rewrite_fail:
|
|
1155
1193
|
return -1;
|
1156
1194
|
}
|
1157
1195
|
|
1196
|
+
static const char *escapes = "ntb\"\\";
|
1197
|
+
static const char *escaped = "\n\t\b\"\\";
|
1198
|
+
|
1199
|
+
/* Escape the values to write them to the file */
|
1200
|
+
static char *escape_value(const char *ptr)
|
1201
|
+
{
|
1202
|
+
git_buf buf = GIT_BUF_INIT;
|
1203
|
+
size_t len;
|
1204
|
+
const char *esc;
|
1205
|
+
|
1206
|
+
assert(ptr);
|
1207
|
+
|
1208
|
+
len = strlen(ptr);
|
1209
|
+
git_buf_grow(&buf, len);
|
1210
|
+
|
1211
|
+
while (*ptr != '\0') {
|
1212
|
+
if ((esc = strchr(escaped, *ptr)) != NULL) {
|
1213
|
+
git_buf_putc(&buf, '\\');
|
1214
|
+
git_buf_putc(&buf, escapes[esc - escaped]);
|
1215
|
+
} else {
|
1216
|
+
git_buf_putc(&buf, *ptr);
|
1217
|
+
}
|
1218
|
+
ptr++;
|
1219
|
+
}
|
1220
|
+
|
1221
|
+
if (git_buf_oom(&buf)) {
|
1222
|
+
git_buf_free(&buf);
|
1223
|
+
return NULL;
|
1224
|
+
}
|
1225
|
+
|
1226
|
+
return git_buf_detach(&buf);
|
1227
|
+
}
|
1228
|
+
|
1158
1229
|
/* '\"' -> '"' etc */
|
1159
1230
|
static char *fixup_line(const char *ptr, int quote_count)
|
1160
1231
|
{
|
1161
1232
|
char *str = git__malloc(strlen(ptr) + 1);
|
1162
1233
|
char *out = str, *esc;
|
1163
|
-
const char *escapes = "ntb\"\\";
|
1164
|
-
const char *escaped = "\n\t\b\"\\";
|
1165
1234
|
|
1166
1235
|
if (str == NULL)
|
1167
1236
|
return NULL;
|
@@ -1274,10 +1343,8 @@ static int parse_variable(diskfile_backend *cfg, char **var_name, char **var_val
|
|
1274
1343
|
else
|
1275
1344
|
value_start = var_end + 1;
|
1276
1345
|
|
1277
|
-
|
1278
|
-
|
1279
|
-
while (git__isspace(var_end[0]));
|
1280
|
-
}
|
1346
|
+
do var_end--;
|
1347
|
+
while (git__isspace(*var_end));
|
1281
1348
|
|
1282
1349
|
*var_name = git__strndup(line, var_end - line + 1);
|
1283
1350
|
GITERR_CHECK_ALLOC(*var_name);
|
@@ -19,12 +19,27 @@ GIT_INLINE(void) git_config_file_free(git_config_file *cfg)
|
|
19
19
|
cfg->free(cfg);
|
20
20
|
}
|
21
21
|
|
22
|
+
GIT_INLINE(int) git_config_file_set_string(
|
23
|
+
git_config_file *cfg, const char *name, const char *value)
|
24
|
+
{
|
25
|
+
return cfg->set(cfg, name, value);
|
26
|
+
}
|
27
|
+
|
22
28
|
GIT_INLINE(int) git_config_file_foreach(
|
23
29
|
git_config_file *cfg,
|
24
30
|
int (*fn)(const char *key, const char *value, void *data),
|
25
31
|
void *data)
|
26
32
|
{
|
27
|
-
return cfg->foreach(cfg, fn, data);
|
33
|
+
return cfg->foreach(cfg, NULL, fn, data);
|
34
|
+
}
|
35
|
+
|
36
|
+
GIT_INLINE(int) git_config_file_foreach_match(
|
37
|
+
git_config_file *cfg,
|
38
|
+
const char *regexp,
|
39
|
+
int (*fn)(const char *key, const char *value, void *data),
|
40
|
+
void *data)
|
41
|
+
{
|
42
|
+
return cfg->foreach(cfg, regexp, fn, data);
|
28
43
|
}
|
29
44
|
|
30
45
|
#endif
|
@@ -184,7 +184,87 @@ static int crlf_apply_to_odb(git_filter *self, git_buf *dest, const git_buf *sou
|
|
184
184
|
return drop_crlf(dest, source);
|
185
185
|
}
|
186
186
|
|
187
|
-
int
|
187
|
+
static int convert_line_endings(git_buf *dest, const git_buf *source, const char *ending)
|
188
|
+
{
|
189
|
+
const char *scan = git_buf_cstr(source),
|
190
|
+
*next,
|
191
|
+
*scan_end = git_buf_cstr(source) + git_buf_len(source);
|
192
|
+
|
193
|
+
while ((next = memchr(scan, '\n', scan_end - scan)) != NULL) {
|
194
|
+
if (next > scan)
|
195
|
+
git_buf_put(dest, scan, next-scan);
|
196
|
+
git_buf_puts(dest, ending);
|
197
|
+
scan = next + 1;
|
198
|
+
}
|
199
|
+
|
200
|
+
git_buf_put(dest, scan, scan_end - scan);
|
201
|
+
return 0;
|
202
|
+
}
|
203
|
+
|
204
|
+
static const char *line_ending(struct crlf_filter *filter)
|
205
|
+
{
|
206
|
+
switch (filter->attrs.crlf_action) {
|
207
|
+
case GIT_CRLF_BINARY:
|
208
|
+
case GIT_CRLF_INPUT:
|
209
|
+
return "\n";
|
210
|
+
|
211
|
+
case GIT_CRLF_CRLF:
|
212
|
+
return "\r\n";
|
213
|
+
|
214
|
+
case GIT_CRLF_AUTO:
|
215
|
+
case GIT_CRLF_TEXT:
|
216
|
+
case GIT_CRLF_GUESS:
|
217
|
+
break;
|
218
|
+
|
219
|
+
default:
|
220
|
+
goto line_ending_error;
|
221
|
+
}
|
222
|
+
|
223
|
+
switch (filter->attrs.eol) {
|
224
|
+
case GIT_EOL_UNSET:
|
225
|
+
return GIT_EOL_NATIVE == GIT_EOL_CRLF
|
226
|
+
? "\r\n"
|
227
|
+
: "\n";
|
228
|
+
|
229
|
+
case GIT_EOL_CRLF:
|
230
|
+
return "\r\n";
|
231
|
+
|
232
|
+
case GIT_EOL_LF:
|
233
|
+
return "\n";
|
234
|
+
|
235
|
+
default:
|
236
|
+
goto line_ending_error;
|
237
|
+
}
|
238
|
+
|
239
|
+
line_ending_error:
|
240
|
+
giterr_set(GITERR_INVALID, "Invalid input to line ending filter");
|
241
|
+
return NULL;
|
242
|
+
}
|
243
|
+
|
244
|
+
static int crlf_apply_to_workdir(git_filter *self, git_buf *dest, const git_buf *source)
|
245
|
+
{
|
246
|
+
struct crlf_filter *filter = (struct crlf_filter *)self;
|
247
|
+
const char *workdir_ending = NULL;
|
248
|
+
|
249
|
+
assert (self && dest && source);
|
250
|
+
|
251
|
+
/* Empty file? Nothing to do. */
|
252
|
+
if (git_buf_len(source) == 0)
|
253
|
+
return 0;
|
254
|
+
|
255
|
+
/* Determine proper line ending */
|
256
|
+
workdir_ending = line_ending(filter);
|
257
|
+
if (!workdir_ending) return -1;
|
258
|
+
|
259
|
+
/* If the line ending is '\n', just copy the input */
|
260
|
+
if (!strcmp(workdir_ending, "\n"))
|
261
|
+
return git_buf_puts(dest, git_buf_cstr(source));
|
262
|
+
|
263
|
+
return convert_line_endings(dest, source, workdir_ending);
|
264
|
+
}
|
265
|
+
|
266
|
+
static int find_and_add_filter(git_vector *filters, git_repository *repo, const char *path,
|
267
|
+
int (*apply)(struct git_filter *self, git_buf *dest, const git_buf *source))
|
188
268
|
{
|
189
269
|
struct crlf_attrs ca;
|
190
270
|
struct crlf_filter *filter;
|
@@ -206,8 +286,7 @@ int git_filter_add__crlf_to_odb(git_vector *filters, git_repository *repo, const
|
|
206
286
|
if (ca.crlf_action == GIT_CRLF_GUESS) {
|
207
287
|
int auto_crlf;
|
208
288
|
|
209
|
-
if ((error = git_repository__cvar(
|
210
|
-
&auto_crlf, repo, GIT_CVAR_AUTO_CRLF)) < 0)
|
289
|
+
if ((error = git_repository__cvar(&auto_crlf, repo, GIT_CVAR_AUTO_CRLF)) < 0)
|
211
290
|
return error;
|
212
291
|
|
213
292
|
if (auto_crlf == GIT_AUTO_CRLF_FALSE)
|
@@ -219,10 +298,19 @@ int git_filter_add__crlf_to_odb(git_vector *filters, git_repository *repo, const
|
|
219
298
|
filter = git__malloc(sizeof(struct crlf_filter));
|
220
299
|
GITERR_CHECK_ALLOC(filter);
|
221
300
|
|
222
|
-
filter->f.apply =
|
301
|
+
filter->f.apply = apply;
|
223
302
|
filter->f.do_free = NULL;
|
224
303
|
memcpy(&filter->attrs, &ca, sizeof(struct crlf_attrs));
|
225
304
|
|
226
305
|
return git_vector_insert(filters, filter);
|
227
306
|
}
|
228
307
|
|
308
|
+
int git_filter_add__crlf_to_odb(git_vector *filters, git_repository *repo, const char *path)
|
309
|
+
{
|
310
|
+
return find_and_add_filter(filters, repo, path, &crlf_apply_to_odb);
|
311
|
+
}
|
312
|
+
|
313
|
+
int git_filter_add__crlf_to_workdir(git_vector *filters, git_repository *repo, const char *path)
|
314
|
+
{
|
315
|
+
return find_and_add_filter(filters, repo, path, &crlf_apply_to_workdir);
|
316
|
+
}
|