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
@@ -32,6 +32,9 @@ GIT_BEGIN_DECL
|
|
32
32
|
* stat() functions, for all platforms.
|
33
33
|
*/
|
34
34
|
#include <sys/types.h>
|
35
|
+
#ifdef __amigaos4__
|
36
|
+
#include <stdint.h>
|
37
|
+
#endif
|
35
38
|
|
36
39
|
#if defined(_MSC_VER)
|
37
40
|
|
@@ -172,10 +175,21 @@ typedef enum {
|
|
172
175
|
GIT_RESET_MIXED = 2,
|
173
176
|
} git_reset_type;
|
174
177
|
|
178
|
+
/** Valid modes for index and tree entries. */
|
179
|
+
typedef enum {
|
180
|
+
GIT_FILEMODE_NEW = 0000000,
|
181
|
+
GIT_FILEMODE_TREE = 0040000,
|
182
|
+
GIT_FILEMODE_BLOB = 0100644,
|
183
|
+
GIT_FILEMODE_BLOB_EXECUTABLE = 0100755,
|
184
|
+
GIT_FILEMODE_LINK = 0120000,
|
185
|
+
GIT_FILEMODE_COMMIT = 0160000,
|
186
|
+
} git_filemode_t;
|
187
|
+
|
175
188
|
typedef struct git_refspec git_refspec;
|
176
189
|
typedef struct git_remote git_remote;
|
177
190
|
|
178
191
|
typedef struct git_remote_head git_remote_head;
|
192
|
+
typedef struct git_remote_callbacks git_remote_callbacks;
|
179
193
|
|
180
194
|
/** @} */
|
181
195
|
GIT_END_DECL
|
File without changes
|
File without changes
|
@@ -0,0 +1,51 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2009-2012 the libgit2 contributors
|
3
|
+
*
|
4
|
+
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
+
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
+
*/
|
7
|
+
#include <git2/common.h>
|
8
|
+
|
9
|
+
#ifndef GIT_WIN32
|
10
|
+
|
11
|
+
#include "posix.h"
|
12
|
+
#include "map.h"
|
13
|
+
#include <errno.h>
|
14
|
+
|
15
|
+
int p_mmap(git_map *out, size_t len, int prot, int flags, int fd, git_off_t offset)
|
16
|
+
{
|
17
|
+
GIT_MMAP_VALIDATE(out, len, prot, flags);
|
18
|
+
|
19
|
+
out->data = NULL;
|
20
|
+
out->len = 0;
|
21
|
+
|
22
|
+
if ((prot & GIT_PROT_WRITE) && ((flags & GIT_MAP_TYPE) == GIT_MAP_SHARED)) {
|
23
|
+
giterr_set(GITERR_OS, "Trying to map shared-writeable");
|
24
|
+
return -1;
|
25
|
+
}
|
26
|
+
|
27
|
+
if((out->data = malloc(len))) {
|
28
|
+
p_lseek(fd, offset, SEEK_SET);
|
29
|
+
p_read(fd, out->data, len);
|
30
|
+
}
|
31
|
+
|
32
|
+
if (!out->data || (out->data == MAP_FAILED)) {
|
33
|
+
giterr_set(GITERR_OS, "Failed to mmap. Could not write data");
|
34
|
+
return -1;
|
35
|
+
}
|
36
|
+
|
37
|
+
out->len = len;
|
38
|
+
|
39
|
+
return 0;
|
40
|
+
}
|
41
|
+
|
42
|
+
int p_munmap(git_map *map)
|
43
|
+
{
|
44
|
+
assert(map != NULL);
|
45
|
+
free(map->data);
|
46
|
+
|
47
|
+
return 0;
|
48
|
+
}
|
49
|
+
|
50
|
+
#endif
|
51
|
+
|
@@ -1,10 +1,30 @@
|
|
1
1
|
#include "repository.h"
|
2
2
|
#include "fileops.h"
|
3
3
|
#include "config.h"
|
4
|
+
#include "git2/oid.h"
|
4
5
|
#include <ctype.h>
|
5
6
|
|
6
7
|
GIT__USE_STRMAP;
|
7
8
|
|
9
|
+
const char *git_attr__true = "[internal]__TRUE__";
|
10
|
+
const char *git_attr__false = "[internal]__FALSE__";
|
11
|
+
const char *git_attr__unset = "[internal]__UNSET__";
|
12
|
+
|
13
|
+
git_attr_t git_attr_value(const char *attr)
|
14
|
+
{
|
15
|
+
if (attr == NULL || attr == git_attr__unset)
|
16
|
+
return GIT_ATTR_UNSPECIFIED_T;
|
17
|
+
|
18
|
+
if (attr == git_attr__true)
|
19
|
+
return GIT_ATTR_TRUE_T;
|
20
|
+
|
21
|
+
if (attr == git_attr__false)
|
22
|
+
return GIT_ATTR_FALSE_T;
|
23
|
+
|
24
|
+
return GIT_ATTR_VALUE_T;
|
25
|
+
}
|
26
|
+
|
27
|
+
|
8
28
|
static int collect_attr_files(
|
9
29
|
git_repository *repo,
|
10
30
|
uint32_t flags,
|
@@ -22,7 +42,7 @@ int git_attr_get(
|
|
22
42
|
int error;
|
23
43
|
git_attr_path path;
|
24
44
|
git_vector files = GIT_VECTOR_INIT;
|
25
|
-
|
45
|
+
size_t i, j;
|
26
46
|
git_attr_file *file;
|
27
47
|
git_attr_name attr;
|
28
48
|
git_attr_rule *rule;
|
@@ -74,7 +94,7 @@ int git_attr_get_many(
|
|
74
94
|
int error;
|
75
95
|
git_attr_path path;
|
76
96
|
git_vector files = GIT_VECTOR_INIT;
|
77
|
-
|
97
|
+
size_t i, j, k;
|
78
98
|
git_attr_file *file;
|
79
99
|
git_attr_rule *rule;
|
80
100
|
attr_get_many_info *info = NULL;
|
@@ -138,7 +158,7 @@ int git_attr_foreach(
|
|
138
158
|
int error;
|
139
159
|
git_attr_path path;
|
140
160
|
git_vector files = GIT_VECTOR_INIT;
|
141
|
-
|
161
|
+
size_t i, j, k;
|
142
162
|
git_attr_file *file;
|
143
163
|
git_attr_rule *rule;
|
144
164
|
git_attr_assignment *assign;
|
@@ -163,11 +183,14 @@ int git_attr_foreach(
|
|
163
183
|
continue;
|
164
184
|
|
165
185
|
git_strmap_insert(seen, assign->name, assign, error);
|
166
|
-
if (error
|
167
|
-
|
186
|
+
if (error < 0)
|
187
|
+
goto cleanup;
|
168
188
|
|
169
|
-
|
189
|
+
error = callback(assign->name, assign->value, payload);
|
190
|
+
if (error) {
|
191
|
+
error = GIT_EUSER;
|
170
192
|
goto cleanup;
|
193
|
+
}
|
171
194
|
}
|
172
195
|
}
|
173
196
|
}
|
@@ -589,6 +612,16 @@ int git_attr_cache__init(git_repository *repo)
|
|
589
612
|
if (ret < 0 && ret != GIT_ENOTFOUND)
|
590
613
|
return ret;
|
591
614
|
|
615
|
+
if (ret == GIT_ENOTFOUND) {
|
616
|
+
git_buf dflt = GIT_BUF_INIT;
|
617
|
+
|
618
|
+
ret = git_futils_find_global_file(&dflt, GIT_IGNORE_CONFIG_DEFAULT);
|
619
|
+
if (!ret)
|
620
|
+
cache->cfg_excl_file = git_buf_detach(&dflt);
|
621
|
+
|
622
|
+
git_buf_free(&dflt);
|
623
|
+
}
|
624
|
+
|
592
625
|
giterr_clear();
|
593
626
|
|
594
627
|
/* allocate hashtable for attribute and ignore file contents */
|
@@ -5,10 +5,6 @@
|
|
5
5
|
#include "git2/tree.h"
|
6
6
|
#include <ctype.h>
|
7
7
|
|
8
|
-
const char *git_attr__true = "[internal]__TRUE__";
|
9
|
-
const char *git_attr__false = "[internal]__FALSE__";
|
10
|
-
const char *git_attr__unset = "[internal]__UNSET__";
|
11
|
-
|
12
8
|
static int sort_by_hash_and_name(const void *a_raw, const void *b_raw);
|
13
9
|
static void git_attr_rule__clear(git_attr_rule *rule);
|
14
10
|
|
@@ -183,7 +179,7 @@ int git_attr_file__lookup_one(
|
|
183
179
|
const char *attr,
|
184
180
|
const char **value)
|
185
181
|
{
|
186
|
-
|
182
|
+
size_t i;
|
187
183
|
git_attr_name name;
|
188
184
|
git_attr_rule *rule;
|
189
185
|
|
@@ -426,17 +422,7 @@ int git_attr_fnmatch__parse(
|
|
426
422
|
return -1;
|
427
423
|
} else {
|
428
424
|
/* strip '\' that might have be used for internal whitespace */
|
429
|
-
|
430
|
-
for (scan = spec->pattern; *scan; to++, scan++) {
|
431
|
-
if (*scan == '\\')
|
432
|
-
scan++; /* skip '\' but include next char */
|
433
|
-
if (to != scan)
|
434
|
-
*to = *scan;
|
435
|
-
}
|
436
|
-
if (to != scan) {
|
437
|
-
*to = '\0';
|
438
|
-
spec->length = (to - spec->pattern);
|
439
|
-
}
|
425
|
+
spec->length = git__unescape(spec->pattern);
|
440
426
|
}
|
441
427
|
|
442
428
|
return 0;
|
@@ -24,6 +24,10 @@
|
|
24
24
|
#define GIT_ATTR_FNMATCH_HASWILD (1U << 5)
|
25
25
|
#define GIT_ATTR_FNMATCH_ALLOWSPACE (1U << 6)
|
26
26
|
|
27
|
+
extern const char *git_attr__true;
|
28
|
+
extern const char *git_attr__false;
|
29
|
+
extern const char *git_attr__unset;
|
30
|
+
|
27
31
|
typedef struct {
|
28
32
|
char *pattern;
|
29
33
|
size_t length;
|
File without changes
|
File without changes
|
@@ -0,0 +1,294 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 2009-2012 the libgit2 contributors
|
3
|
+
*
|
4
|
+
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
|
+
* a Linking Exception. For full terms see the included COPYING file.
|
6
|
+
*/
|
7
|
+
|
8
|
+
#include "common.h"
|
9
|
+
#include "commit.h"
|
10
|
+
#include "tag.h"
|
11
|
+
#include "config.h"
|
12
|
+
#include "refspec.h"
|
13
|
+
|
14
|
+
#include "git2/branch.h"
|
15
|
+
|
16
|
+
static int retrieve_branch_reference(
|
17
|
+
git_reference **branch_reference_out,
|
18
|
+
git_repository *repo,
|
19
|
+
const char *branch_name,
|
20
|
+
int is_remote)
|
21
|
+
{
|
22
|
+
git_reference *branch;
|
23
|
+
int error = -1;
|
24
|
+
char *prefix;
|
25
|
+
git_buf ref_name = GIT_BUF_INIT;
|
26
|
+
|
27
|
+
*branch_reference_out = NULL;
|
28
|
+
|
29
|
+
prefix = is_remote ? GIT_REFS_REMOTES_DIR : GIT_REFS_HEADS_DIR;
|
30
|
+
|
31
|
+
if (git_buf_joinpath(&ref_name, prefix, branch_name) < 0)
|
32
|
+
goto cleanup;
|
33
|
+
|
34
|
+
if ((error = git_reference_lookup(&branch, repo, ref_name.ptr)) < 0) {
|
35
|
+
giterr_set(GITERR_REFERENCE,
|
36
|
+
"Cannot locate %s branch '%s'.", is_remote ? "remote-tracking" : "local", branch_name);
|
37
|
+
goto cleanup;
|
38
|
+
}
|
39
|
+
|
40
|
+
*branch_reference_out = branch;
|
41
|
+
|
42
|
+
cleanup:
|
43
|
+
git_buf_free(&ref_name);
|
44
|
+
return error;
|
45
|
+
}
|
46
|
+
|
47
|
+
static int create_error_invalid(const char *msg)
|
48
|
+
{
|
49
|
+
giterr_set(GITERR_INVALID, "Cannot create branch - %s", msg);
|
50
|
+
return -1;
|
51
|
+
}
|
52
|
+
|
53
|
+
int git_branch_create(
|
54
|
+
git_reference **ref_out,
|
55
|
+
git_repository *repository,
|
56
|
+
const char *branch_name,
|
57
|
+
const git_object *target,
|
58
|
+
int force)
|
59
|
+
{
|
60
|
+
git_otype target_type = GIT_OBJ_BAD;
|
61
|
+
git_object *commit = NULL;
|
62
|
+
git_reference *branch = NULL;
|
63
|
+
git_buf canonical_branch_name = GIT_BUF_INIT;
|
64
|
+
int error = -1;
|
65
|
+
|
66
|
+
assert(branch_name && target && ref_out);
|
67
|
+
assert(git_object_owner(target) == repository);
|
68
|
+
|
69
|
+
target_type = git_object_type(target);
|
70
|
+
|
71
|
+
switch (target_type)
|
72
|
+
{
|
73
|
+
case GIT_OBJ_TAG:
|
74
|
+
if (git_tag_peel(&commit, (git_tag *)target) < 0)
|
75
|
+
goto cleanup;
|
76
|
+
|
77
|
+
if (git_object_type(commit) != GIT_OBJ_COMMIT) {
|
78
|
+
create_error_invalid("The given target does not resolve to a commit");
|
79
|
+
goto cleanup;
|
80
|
+
}
|
81
|
+
break;
|
82
|
+
|
83
|
+
case GIT_OBJ_COMMIT:
|
84
|
+
commit = (git_object *)target;
|
85
|
+
break;
|
86
|
+
|
87
|
+
default:
|
88
|
+
return create_error_invalid("Only git_tag and git_commit objects are valid targets.");
|
89
|
+
}
|
90
|
+
|
91
|
+
if (git_buf_joinpath(&canonical_branch_name, GIT_REFS_HEADS_DIR, branch_name) < 0)
|
92
|
+
goto cleanup;
|
93
|
+
|
94
|
+
if (git_reference_create_oid(&branch, repository,
|
95
|
+
git_buf_cstr(&canonical_branch_name), git_object_id(commit), force) < 0)
|
96
|
+
goto cleanup;
|
97
|
+
|
98
|
+
*ref_out = branch;
|
99
|
+
error = 0;
|
100
|
+
|
101
|
+
cleanup:
|
102
|
+
if (target_type == GIT_OBJ_TAG)
|
103
|
+
git_object_free(commit);
|
104
|
+
|
105
|
+
git_buf_free(&canonical_branch_name);
|
106
|
+
return error;
|
107
|
+
}
|
108
|
+
|
109
|
+
int git_branch_delete(git_repository *repo, const char *branch_name, git_branch_t branch_type)
|
110
|
+
{
|
111
|
+
git_reference *branch = NULL;
|
112
|
+
git_reference *head = NULL;
|
113
|
+
int error;
|
114
|
+
|
115
|
+
assert(repo && branch_name);
|
116
|
+
assert((branch_type == GIT_BRANCH_LOCAL) || (branch_type == GIT_BRANCH_REMOTE));
|
117
|
+
|
118
|
+
if ((error = retrieve_branch_reference(&branch, repo, branch_name, branch_type == GIT_BRANCH_REMOTE)) < 0)
|
119
|
+
return error;
|
120
|
+
|
121
|
+
if (git_reference_lookup(&head, repo, GIT_HEAD_FILE) < 0) {
|
122
|
+
giterr_set(GITERR_REFERENCE, "Cannot locate HEAD.");
|
123
|
+
goto on_error;
|
124
|
+
}
|
125
|
+
|
126
|
+
if ((git_reference_type(head) == GIT_REF_SYMBOLIC)
|
127
|
+
&& (strcmp(git_reference_target(head), git_reference_name(branch)) == 0)) {
|
128
|
+
giterr_set(GITERR_REFERENCE,
|
129
|
+
"Cannot delete branch '%s' as it is the current HEAD of the repository.", branch_name);
|
130
|
+
goto on_error;
|
131
|
+
}
|
132
|
+
|
133
|
+
if (git_reference_delete(branch) < 0)
|
134
|
+
goto on_error;
|
135
|
+
|
136
|
+
git_reference_free(head);
|
137
|
+
return 0;
|
138
|
+
|
139
|
+
on_error:
|
140
|
+
git_reference_free(head);
|
141
|
+
git_reference_free(branch);
|
142
|
+
return -1;
|
143
|
+
}
|
144
|
+
|
145
|
+
typedef struct {
|
146
|
+
int (*branch_cb)(
|
147
|
+
const char *branch_name,
|
148
|
+
git_branch_t branch_type,
|
149
|
+
void *payload);
|
150
|
+
void *callback_payload;
|
151
|
+
unsigned int branch_type;
|
152
|
+
} branch_foreach_filter;
|
153
|
+
|
154
|
+
static int branch_foreach_cb(const char *branch_name, void *payload)
|
155
|
+
{
|
156
|
+
branch_foreach_filter *filter = (branch_foreach_filter *)payload;
|
157
|
+
|
158
|
+
if (filter->branch_type & GIT_BRANCH_LOCAL &&
|
159
|
+
git__prefixcmp(branch_name, GIT_REFS_HEADS_DIR) == 0)
|
160
|
+
return filter->branch_cb(branch_name + strlen(GIT_REFS_HEADS_DIR), GIT_BRANCH_LOCAL, filter->callback_payload);
|
161
|
+
|
162
|
+
if (filter->branch_type & GIT_BRANCH_REMOTE &&
|
163
|
+
git__prefixcmp(branch_name, GIT_REFS_REMOTES_DIR) == 0)
|
164
|
+
return filter->branch_cb(branch_name + strlen(GIT_REFS_REMOTES_DIR), GIT_BRANCH_REMOTE, filter->callback_payload);
|
165
|
+
|
166
|
+
return 0;
|
167
|
+
}
|
168
|
+
|
169
|
+
int git_branch_foreach(
|
170
|
+
git_repository *repo,
|
171
|
+
unsigned int list_flags,
|
172
|
+
int (*branch_cb)(
|
173
|
+
const char *branch_name,
|
174
|
+
git_branch_t branch_type,
|
175
|
+
void *payload),
|
176
|
+
void *payload
|
177
|
+
)
|
178
|
+
{
|
179
|
+
branch_foreach_filter filter;
|
180
|
+
|
181
|
+
filter.branch_cb = branch_cb;
|
182
|
+
filter.branch_type = list_flags;
|
183
|
+
filter.callback_payload = payload;
|
184
|
+
|
185
|
+
return git_reference_foreach(repo, GIT_REF_LISTALL, &branch_foreach_cb, (void *)&filter);
|
186
|
+
}
|
187
|
+
|
188
|
+
static int not_a_local_branch(git_reference *ref)
|
189
|
+
{
|
190
|
+
giterr_set(GITERR_INVALID, "Reference '%s' is not a local branch.", git_reference_name(ref));
|
191
|
+
return -1;
|
192
|
+
}
|
193
|
+
|
194
|
+
int git_branch_move(
|
195
|
+
git_reference *branch,
|
196
|
+
const char *new_branch_name,
|
197
|
+
int force)
|
198
|
+
{
|
199
|
+
git_buf new_reference_name = GIT_BUF_INIT;
|
200
|
+
int error;
|
201
|
+
|
202
|
+
assert(branch && new_branch_name);
|
203
|
+
|
204
|
+
if (!git_reference_is_branch(branch))
|
205
|
+
return not_a_local_branch(branch);
|
206
|
+
|
207
|
+
if ((error = git_buf_joinpath(&new_reference_name, GIT_REFS_HEADS_DIR, new_branch_name)) < 0)
|
208
|
+
goto cleanup;
|
209
|
+
|
210
|
+
error = git_reference_rename(branch, git_buf_cstr(&new_reference_name), force);
|
211
|
+
|
212
|
+
cleanup:
|
213
|
+
git_buf_free(&new_reference_name);
|
214
|
+
|
215
|
+
return error;
|
216
|
+
}
|
217
|
+
|
218
|
+
int git_branch_lookup(
|
219
|
+
git_reference **ref_out,
|
220
|
+
git_repository *repo,
|
221
|
+
const char *branch_name,
|
222
|
+
git_branch_t branch_type)
|
223
|
+
{
|
224
|
+
assert(ref_out && repo && branch_name);
|
225
|
+
|
226
|
+
return retrieve_branch_reference(ref_out, repo, branch_name, branch_type == GIT_BRANCH_REMOTE);
|
227
|
+
}
|
228
|
+
|
229
|
+
static int retrieve_tracking_configuration(
|
230
|
+
const char **out, git_reference *branch, const char *format)
|
231
|
+
{
|
232
|
+
git_config *config;
|
233
|
+
git_buf buf = GIT_BUF_INIT;
|
234
|
+
int error;
|
235
|
+
|
236
|
+
if (git_repository_config__weakptr(&config, git_reference_owner(branch)) < 0)
|
237
|
+
return -1;
|
238
|
+
|
239
|
+
if (git_buf_printf(&buf, format,
|
240
|
+
git_reference_name(branch) + strlen(GIT_REFS_HEADS_DIR)) < 0)
|
241
|
+
return -1;
|
242
|
+
|
243
|
+
error = git_config_get_string(out, config, git_buf_cstr(&buf));
|
244
|
+
git_buf_free(&buf);
|
245
|
+
return error;
|
246
|
+
}
|
247
|
+
|
248
|
+
int git_branch_tracking(
|
249
|
+
git_reference **tracking_out,
|
250
|
+
git_reference *branch)
|
251
|
+
{
|
252
|
+
const char *remote_name, *merge_name;
|
253
|
+
git_buf buf = GIT_BUF_INIT;
|
254
|
+
int error = -1;
|
255
|
+
git_remote *remote = NULL;
|
256
|
+
const git_refspec *refspec;
|
257
|
+
|
258
|
+
assert(tracking_out && branch);
|
259
|
+
|
260
|
+
if (!git_reference_is_branch(branch))
|
261
|
+
return not_a_local_branch(branch);
|
262
|
+
|
263
|
+
if ((error = retrieve_tracking_configuration(&remote_name, branch, "branch.%s.remote")) < 0)
|
264
|
+
goto cleanup;
|
265
|
+
|
266
|
+
if ((error = retrieve_tracking_configuration(&merge_name, branch, "branch.%s.merge")) < 0)
|
267
|
+
goto cleanup;
|
268
|
+
|
269
|
+
if (strcmp(".", remote_name) != 0) {
|
270
|
+
if ((error = git_remote_load(&remote, git_reference_owner(branch), remote_name)) < 0)
|
271
|
+
goto cleanup;
|
272
|
+
|
273
|
+
refspec = git_remote_fetchspec(remote);
|
274
|
+
if (refspec == NULL) {
|
275
|
+
error = GIT_ENOTFOUND;
|
276
|
+
goto cleanup;
|
277
|
+
}
|
278
|
+
|
279
|
+
if (git_refspec_transform_r(&buf, refspec, merge_name) < 0)
|
280
|
+
goto cleanup;
|
281
|
+
} else
|
282
|
+
if (git_buf_sets(&buf, merge_name) < 0)
|
283
|
+
goto cleanup;
|
284
|
+
|
285
|
+
error = git_reference_lookup(
|
286
|
+
tracking_out,
|
287
|
+
git_reference_owner(branch),
|
288
|
+
git_buf_cstr(&buf));
|
289
|
+
|
290
|
+
cleanup:
|
291
|
+
git_remote_free(remote);
|
292
|
+
git_buf_free(&buf);
|
293
|
+
return error;
|
294
|
+
}
|