rugged 0.16.0 → 0.17.0b1
Sign up to get free protection for your applications and to get access to all the features.
- data/README.md +373 -243
- data/Rakefile +22 -0
- data/ext/rugged/extconf.rb +9 -6
- data/ext/rugged/rugged.c +123 -31
- data/ext/rugged/rugged.h +11 -10
- data/ext/rugged/rugged_blob.c +181 -18
- data/ext/rugged/rugged_commit.c +196 -18
- data/ext/rugged/rugged_config.c +94 -5
- data/ext/rugged/rugged_object.c +54 -1
- data/ext/rugged/rugged_reference.c +203 -15
- data/ext/rugged/{remote.c → rugged_remote.c} +35 -10
- data/ext/rugged/rugged_repo.c +323 -81
- data/ext/rugged/rugged_revwalk.c +57 -4
- data/ext/rugged/rugged_signature.c +3 -3
- data/ext/rugged/rugged_tag.c +72 -1
- data/ext/rugged/rugged_tree.c +70 -2
- data/ext/rugged/vendor/libgit2-dist/deps/regex/config.h +7 -0
- data/ext/rugged/vendor/libgit2-dist/deps/regex/regcomp.c +3856 -0
- data/ext/rugged/vendor/libgit2-dist/deps/regex/regex.c +85 -0
- data/ext/rugged/vendor/libgit2-dist/deps/regex/regex.h +582 -0
- data/ext/rugged/vendor/libgit2-dist/deps/regex/regex_internal.c +1744 -0
- data/ext/rugged/vendor/libgit2-dist/deps/regex/regex_internal.h +810 -0
- data/ext/rugged/vendor/libgit2-dist/deps/regex/regexec.c +4369 -0
- data/ext/rugged/vendor/libgit2-dist/examples/diff.c +238 -0
- data/ext/rugged/vendor/libgit2-dist/examples/general.c +4 -4
- data/ext/rugged/vendor/libgit2-dist/examples/network/fetch.c +101 -85
- data/ext/rugged/vendor/libgit2-dist/examples/network/git2.c +7 -3
- data/ext/rugged/vendor/libgit2-dist/examples/network/index-pack.c +80 -25
- data/ext/rugged/vendor/libgit2-dist/examples/network/ls-remote.c +6 -6
- data/ext/rugged/vendor/libgit2-dist/include/git2/attr.h +224 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/blob.h +59 -5
- data/ext/rugged/vendor/libgit2-dist/include/git2/branch.h +114 -7
- data/ext/rugged/vendor/libgit2-dist/include/git2/commit.h +14 -7
- data/ext/rugged/vendor/libgit2-dist/include/git2/common.h +4 -3
- data/ext/rugged/vendor/libgit2-dist/include/git2/config.h +105 -27
- data/ext/rugged/vendor/libgit2-dist/include/git2/diff.h +409 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/errors.h +47 -82
- data/ext/rugged/vendor/libgit2-dist/include/git2/index.h +25 -10
- data/ext/rugged/vendor/libgit2-dist/include/git2/indexer.h +46 -1
- data/ext/rugged/vendor/libgit2-dist/include/git2/merge.h +35 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/net.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/include/git2/notes.h +139 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/object.h +5 -5
- data/ext/rugged/vendor/libgit2-dist/include/git2/odb.h +13 -13
- data/ext/rugged/vendor/libgit2-dist/include/git2/odb_backend.h +8 -8
- data/ext/rugged/vendor/libgit2-dist/include/git2/oid.h +14 -9
- data/ext/rugged/vendor/libgit2-dist/include/git2/reflog.h +5 -5
- data/ext/rugged/vendor/libgit2-dist/include/git2/refs.h +37 -17
- data/ext/rugged/vendor/libgit2-dist/include/git2/refspec.h +17 -9
- data/ext/rugged/vendor/libgit2-dist/include/git2/remote.h +83 -16
- data/ext/rugged/vendor/libgit2-dist/include/git2/repository.h +24 -10
- data/ext/rugged/vendor/libgit2-dist/include/git2/reset.h +44 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/revparse.h +36 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/revwalk.h +74 -6
- data/ext/rugged/vendor/libgit2-dist/include/git2/signature.h +3 -3
- data/ext/rugged/vendor/libgit2-dist/include/git2/status.h +120 -19
- data/ext/rugged/vendor/libgit2-dist/include/git2/submodule.h +103 -0
- data/ext/rugged/vendor/libgit2-dist/include/git2/tag.h +28 -10
- data/ext/rugged/vendor/libgit2-dist/include/git2/threads.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/include/git2/tree.h +13 -13
- data/ext/rugged/vendor/libgit2-dist/include/git2/types.h +16 -2
- data/ext/rugged/vendor/libgit2-dist/include/git2/version.h +3 -3
- data/ext/rugged/vendor/libgit2-dist/include/git2/windows.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/include/git2.h +7 -2
- data/ext/rugged/vendor/libgit2-dist/src/attr.c +677 -0
- data/ext/rugged/vendor/libgit2-dist/src/attr.h +56 -0
- data/ext/rugged/vendor/libgit2-dist/src/attr_file.c +609 -0
- data/ext/rugged/vendor/libgit2-dist/src/attr_file.h +145 -0
- data/ext/rugged/vendor/libgit2-dist/src/blob.c +213 -60
- data/ext/rugged/vendor/libgit2-dist/src/blob.h +2 -1
- data/ext/rugged/vendor/libgit2-dist/src/branch.c +208 -0
- data/ext/rugged/vendor/libgit2-dist/src/branch.h +17 -0
- data/ext/rugged/vendor/libgit2-dist/src/bswap.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/buffer.c +395 -46
- data/ext/rugged/vendor/libgit2-dist/src/buffer.h +112 -9
- data/ext/rugged/vendor/libgit2-dist/src/cache.c +37 -49
- data/ext/rugged/vendor/libgit2-dist/src/cache.h +7 -17
- data/ext/rugged/vendor/libgit2-dist/src/cc-compat.h +18 -16
- data/ext/rugged/vendor/libgit2-dist/src/commit.c +56 -90
- data/ext/rugged/vendor/libgit2-dist/src/commit.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/common.h +12 -5
- data/ext/rugged/vendor/libgit2-dist/src/{win32 → compat}/fnmatch.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/{win32 → compat}/fnmatch.h +3 -3
- data/ext/rugged/vendor/libgit2-dist/src/config.c +247 -158
- data/ext/rugged/vendor/libgit2-dist/src/config.h +10 -1
- data/ext/rugged/vendor/libgit2-dist/src/config_cache.c +94 -0
- data/ext/rugged/vendor/libgit2-dist/src/config_file.c +606 -496
- data/ext/rugged/vendor/libgit2-dist/src/config_file.h +31 -0
- data/ext/rugged/vendor/libgit2-dist/src/crlf.c +228 -0
- data/ext/rugged/vendor/libgit2-dist/src/date.c +876 -0
- data/ext/rugged/vendor/libgit2-dist/src/delta-apply.c +15 -9
- data/ext/rugged/vendor/libgit2-dist/src/delta-apply.h +2 -2
- data/ext/rugged/vendor/libgit2-dist/src/diff.c +814 -0
- data/ext/rugged/vendor/libgit2-dist/src/diff.h +43 -0
- data/ext/rugged/vendor/libgit2-dist/src/diff_output.c +794 -0
- data/ext/rugged/vendor/libgit2-dist/src/errors.c +89 -74
- data/ext/rugged/vendor/libgit2-dist/src/fetch.c +94 -66
- data/ext/rugged/vendor/libgit2-dist/src/fetch.h +5 -4
- data/ext/rugged/vendor/libgit2-dist/src/filebuf.c +157 -100
- data/ext/rugged/vendor/libgit2-dist/src/filebuf.h +22 -8
- data/ext/rugged/vendor/libgit2-dist/src/fileops.c +330 -206
- data/ext/rugged/vendor/libgit2-dist/src/fileops.h +82 -51
- data/ext/rugged/vendor/libgit2-dist/src/filter.c +165 -0
- data/ext/rugged/vendor/libgit2-dist/src/filter.h +119 -0
- data/ext/rugged/vendor/libgit2-dist/src/global.c +4 -4
- data/ext/rugged/vendor/libgit2-dist/src/global.h +4 -1
- data/ext/rugged/vendor/libgit2-dist/src/hash.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/hash.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/ignore.c +203 -0
- data/ext/rugged/vendor/libgit2-dist/src/ignore.h +38 -0
- data/ext/rugged/vendor/libgit2-dist/src/index.c +220 -169
- data/ext/rugged/vendor/libgit2-dist/src/index.h +5 -1
- data/ext/rugged/vendor/libgit2-dist/src/indexer.c +601 -102
- data/ext/rugged/vendor/libgit2-dist/src/iterator.c +748 -0
- data/ext/rugged/vendor/libgit2-dist/src/iterator.h +151 -0
- data/ext/rugged/vendor/libgit2-dist/src/khash.h +608 -0
- data/ext/rugged/vendor/libgit2-dist/src/map.h +6 -1
- data/ext/rugged/vendor/libgit2-dist/src/message.c +61 -0
- data/ext/rugged/vendor/libgit2-dist/src/message.h +14 -0
- data/ext/rugged/vendor/libgit2-dist/src/mwindow.c +27 -29
- data/ext/rugged/vendor/libgit2-dist/src/mwindow.h +4 -4
- data/ext/rugged/vendor/libgit2-dist/src/netops.c +375 -56
- data/ext/rugged/vendor/libgit2-dist/src/netops.h +12 -9
- data/ext/rugged/vendor/libgit2-dist/src/notes.c +548 -0
- data/ext/rugged/vendor/libgit2-dist/src/notes.h +28 -0
- data/ext/rugged/vendor/libgit2-dist/src/object.c +59 -21
- data/ext/rugged/vendor/libgit2-dist/src/odb.c +212 -175
- data/ext/rugged/vendor/libgit2-dist/src/odb.h +39 -2
- data/ext/rugged/vendor/libgit2-dist/src/odb_loose.c +238 -241
- data/ext/rugged/vendor/libgit2-dist/src/odb_pack.c +94 -106
- data/ext/rugged/vendor/libgit2-dist/src/oid.c +59 -60
- data/ext/rugged/vendor/libgit2-dist/src/oidmap.h +42 -0
- data/ext/rugged/vendor/libgit2-dist/src/pack.c +198 -170
- data/ext/rugged/vendor/libgit2-dist/src/pack.h +16 -9
- data/ext/rugged/vendor/libgit2-dist/src/path.c +496 -106
- data/ext/rugged/vendor/libgit2-dist/src/path.h +214 -20
- data/ext/rugged/vendor/libgit2-dist/src/pkt.c +88 -159
- data/ext/rugged/vendor/libgit2-dist/src/pkt.h +9 -5
- data/ext/rugged/vendor/libgit2-dist/src/pool.c +294 -0
- data/ext/rugged/vendor/libgit2-dist/src/pool.h +125 -0
- data/ext/rugged/vendor/libgit2-dist/src/posix.c +38 -16
- data/ext/rugged/vendor/libgit2-dist/src/posix.h +20 -2
- data/ext/rugged/vendor/libgit2-dist/src/ppc/sha1.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/ppc/sha1.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/pqueue.c +7 -7
- data/ext/rugged/vendor/libgit2-dist/src/pqueue.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/protocol.c +21 -13
- data/ext/rugged/vendor/libgit2-dist/src/protocol.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/reflog.c +125 -103
- data/ext/rugged/vendor/libgit2-dist/src/reflog.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/refs.c +713 -640
- data/ext/rugged/vendor/libgit2-dist/src/refs.h +27 -3
- data/ext/rugged/vendor/libgit2-dist/src/refspec.c +51 -17
- data/ext/rugged/vendor/libgit2-dist/src/refspec.h +13 -1
- data/ext/rugged/vendor/libgit2-dist/src/remote.c +307 -119
- data/ext/rugged/vendor/libgit2-dist/src/remote.h +3 -2
- data/ext/rugged/vendor/libgit2-dist/src/repository.c +593 -442
- data/ext/rugged/vendor/libgit2-dist/src/repository.h +80 -2
- data/ext/rugged/vendor/libgit2-dist/src/reset.c +103 -0
- data/ext/rugged/vendor/libgit2-dist/src/revparse.c +753 -0
- data/ext/rugged/vendor/libgit2-dist/src/revwalk.c +434 -158
- data/ext/rugged/vendor/libgit2-dist/src/sha1.c +3 -3
- data/ext/rugged/vendor/libgit2-dist/src/sha1.h +2 -2
- data/ext/rugged/vendor/libgit2-dist/src/sha1_lookup.c +3 -2
- data/ext/rugged/vendor/libgit2-dist/src/sha1_lookup.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/signature.c +69 -80
- data/ext/rugged/vendor/libgit2-dist/src/signature.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/status.c +184 -638
- data/ext/rugged/vendor/libgit2-dist/src/strmap.h +64 -0
- data/ext/rugged/vendor/libgit2-dist/src/submodule.c +387 -0
- data/ext/rugged/vendor/libgit2-dist/src/tag.c +162 -137
- data/ext/rugged/vendor/libgit2-dist/src/tag.h +2 -1
- data/ext/rugged/vendor/libgit2-dist/src/thread-utils.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/thread-utils.h +8 -8
- data/ext/rugged/vendor/libgit2-dist/src/transport.c +31 -19
- data/ext/rugged/vendor/libgit2-dist/src/transport.h +31 -11
- data/ext/rugged/vendor/libgit2-dist/src/transports/git.c +168 -193
- data/ext/rugged/vendor/libgit2-dist/src/transports/http.c +192 -241
- data/ext/rugged/vendor/libgit2-dist/src/transports/local.c +92 -86
- data/ext/rugged/vendor/libgit2-dist/src/tree-cache.c +32 -49
- data/ext/rugged/vendor/libgit2-dist/src/tree-cache.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/tree.c +172 -145
- data/ext/rugged/vendor/libgit2-dist/src/tree.h +16 -2
- data/ext/rugged/vendor/libgit2-dist/src/tsort.c +16 -14
- data/ext/rugged/vendor/libgit2-dist/src/unix/map.c +8 -24
- data/ext/rugged/vendor/libgit2-dist/src/unix/posix.h +9 -3
- data/ext/rugged/vendor/libgit2-dist/src/util.c +94 -38
- data/ext/rugged/vendor/libgit2-dist/src/util.h +119 -13
- data/ext/rugged/vendor/libgit2-dist/src/vector.c +84 -31
- data/ext/rugged/vendor/libgit2-dist/src/vector.h +37 -4
- data/ext/rugged/vendor/libgit2-dist/src/win32/dir.c +81 -41
- data/ext/rugged/vendor/libgit2-dist/src/{dir.h → win32/dir.h} +4 -9
- data/ext/rugged/vendor/libgit2-dist/src/win32/map.c +19 -35
- data/ext/rugged/vendor/libgit2-dist/src/win32/mingw-compat.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/win32/msvc-compat.h +5 -1
- data/ext/rugged/vendor/libgit2-dist/src/win32/posix.h +10 -8
- data/ext/rugged/vendor/libgit2-dist/src/win32/posix_w32.c +262 -118
- data/ext/rugged/vendor/libgit2-dist/src/win32/pthread.c +12 -9
- data/ext/rugged/vendor/libgit2-dist/src/win32/pthread.h +1 -1
- data/ext/rugged/vendor/libgit2-dist/src/win32/utf-conv.c +30 -26
- data/ext/rugged/vendor/libgit2-dist/src/win32/utf-conv.h +2 -1
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xdiff.h +135 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xdiffi.c +572 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xdiffi.h +63 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xemit.c +253 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xemit.h +36 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xhistogram.c +371 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xinclude.h +46 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xmacros.h +54 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xmerge.c +619 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xpatience.c +358 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xprepare.c +483 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xprepare.h +34 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xtypes.h +67 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xutils.c +419 -0
- data/ext/rugged/vendor/libgit2-dist/src/xdiff/xutils.h +49 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/attr_expect.h +43 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/file.c +226 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/flags.c +108 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/lookup.c +262 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/attr/repo.c +273 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/buf/basic.c +5 -5
- data/ext/rugged/vendor/libgit2-dist/tests-clar/clar_helpers.c +181 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/clar_libgit2.h +55 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/commit.c +44 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/parse.c +350 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/signature.c +65 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/commit/write.c +140 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/config/add.c +3 -3
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/multivar.c +151 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/config/new.c +5 -5
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/config/read.c +44 -32
- data/ext/rugged/vendor/libgit2-dist/tests-clar/config/stress.c +61 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/config/write.c +20 -5
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/buffer.c +613 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/core/dirent.c +39 -26
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/env.c +115 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/errors.c +60 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/core/filebuf.c +4 -18
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/hex.c +22 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/core/oid.c +6 -6
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/path.c +420 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/pool.c +85 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/rmdir.c +68 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/core/string.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/strmap.c +102 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/core/strtol.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/tests-clar/core/vector.c +191 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/date/date.c +15 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/blob.c +254 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/diff_helpers.c +104 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/diff_helpers.h +47 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/index.c +92 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/iterator.c +572 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/patch.c +99 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/tree.c +210 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/diff/workdir.c +543 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/index/read_tree.c +46 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/index/rename.c +2 -12
- data/ext/rugged/vendor/libgit2-dist/tests-clar/index/tests.c +246 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/createremotethenload.c +33 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/remotelocal.c +137 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/network/remotes.c +183 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/notes/notes.c +133 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/notes/notesref.c +57 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/filter.c +125 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/fromchunks.c +87 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/blob/write.c +69 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/commit/commitstagedfile.c +126 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/lookup.c +63 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/message.c +171 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/chars.c +3 -14
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/compare.c +4 -4
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/convert.c +10 -10
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/data.h +0 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/fromstr.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/hash.c +21 -17
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/short.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/size.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/raw/type2string.c +14 -14
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/raw/write.c +455 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/peel.c +56 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/read.c +130 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tag/write.c +192 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/object/tree/frompath.c +22 -16
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tree/read.c +75 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/object/tree/write.c +84 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/odb/loose.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/odb/loose_data.h +0 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/odb/mixed.c +24 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/odb/pack_data.h +0 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/odb/packed.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/odb/sorting.c +1 -1
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/create.c +113 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/delete.c +91 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/listall.c +78 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/branches/move.c +72 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/crashes.c +17 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/create.c +149 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/delete.c +85 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/list.c +53 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/listall.c +36 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/lookup.c +42 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/normalize.c +200 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/overwrite.c +136 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/pack.c +67 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/read.c +194 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/reflog.c +123 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/rename.c +339 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/revparse.c +174 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/refs/unicode.c +42 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/discover.c +142 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/repo/getters.c +19 -1
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/init.c +235 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/open.c +282 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/repo/setters.c +80 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/mixed.c +47 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/reset_helpers.c +10 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/reset_helpers.h +6 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/reset/soft.c +102 -0
- data/ext/rugged/vendor/libgit2-dist/{tests/t05-revwalk.c → tests-clar/revwalk/basic.c} +85 -44
- data/ext/rugged/vendor/libgit2-dist/tests-clar/revwalk/mergebase.c +148 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/ignore.c +133 -0
- data/ext/rugged/vendor/libgit2-dist/{tests-clay → tests-clar}/status/single.c +2 -11
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_data.h +202 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_helpers.c +49 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/status_helpers.h +33 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/submodules.c +112 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/status/worktree.c +649 -0
- data/ext/rugged/vendor/libgit2-dist/tests-clar/threads/basic.c +20 -0
- data/ext/rugged/vendor/libgit2-dist.tar.gz +0 -0
- data/lib/rugged/commit.rb +35 -0
- data/lib/rugged/object.rb +7 -0
- data/lib/rugged/reference.rb +9 -0
- data/lib/rugged/repository.rb +99 -3
- data/lib/rugged/tag.rb +22 -0
- data/lib/rugged/tree.rb +8 -0
- data/lib/rugged/version.rb +1 -1
- data/lib/rugged.rb +4 -1
- data/test/blob_test.rb +2 -2
- data/test/commit_test.rb +27 -13
- data/test/config_test.rb +44 -0
- data/test/coverage/HEAD.json +1 -1
- data/test/fixtures/testrepo.git/config +2 -0
- data/test/fixtures/testrepo.git/objects/7f/043268ea43ce18e3540acaabf9e090c91965b0 +0 -0
- data/test/lib_test.rb +7 -0
- data/test/object_test.rb +3 -3
- data/test/reference_test.rb +46 -8
- data/test/remote_test.rb +8 -2
- data/test/repo_pack_test.rb +3 -3
- data/test/repo_test.rb +79 -11
- data/test/tag_test.rb +9 -2
- data/test/test_helper.rb +21 -0
- data/test/tree_test.rb +18 -6
- metadata +205 -81
- data/ext/rugged/vendor/libgit2-dist/include/git2/zlib.h +0 -40
- data/ext/rugged/vendor/libgit2-dist/src/hashtable.c +0 -243
- data/ext/rugged/vendor/libgit2-dist/src/hashtable.h +0 -80
- data/ext/rugged/vendor/libgit2-dist/tests/t00-core.c +0 -628
- data/ext/rugged/vendor/libgit2-dist/tests/t01-data.h +0 -322
- data/ext/rugged/vendor/libgit2-dist/tests/t01-rawobj.c +0 -638
- data/ext/rugged/vendor/libgit2-dist/tests/t03-data.h +0 -344
- data/ext/rugged/vendor/libgit2-dist/tests/t03-objwrite.c +0 -255
- data/ext/rugged/vendor/libgit2-dist/tests/t04-commit.c +0 -788
- data/ext/rugged/vendor/libgit2-dist/tests/t06-index.c +0 -219
- data/ext/rugged/vendor/libgit2-dist/tests/t07-hashtable.c +0 -192
- data/ext/rugged/vendor/libgit2-dist/tests/t08-tag.c +0 -357
- data/ext/rugged/vendor/libgit2-dist/tests/t09-tree.c +0 -221
- data/ext/rugged/vendor/libgit2-dist/tests/t10-refs.c +0 -1294
- data/ext/rugged/vendor/libgit2-dist/tests/t12-repo.c +0 -174
- data/ext/rugged/vendor/libgit2-dist/tests/t13-threads.c +0 -41
- data/ext/rugged/vendor/libgit2-dist/tests/t17-bufs.c +0 -61
- data/ext/rugged/vendor/libgit2-dist/tests/t18-status.c +0 -448
- data/ext/rugged/vendor/libgit2-dist/tests/test_helpers.c +0 -310
- data/ext/rugged/vendor/libgit2-dist/tests/test_helpers.h +0 -83
- data/ext/rugged/vendor/libgit2-dist/tests/test_lib.c +0 -198
- data/ext/rugged/vendor/libgit2-dist/tests/test_lib.h +0 -54
- data/ext/rugged/vendor/libgit2-dist/tests/test_main.c +0 -89
- data/ext/rugged/vendor/libgit2-dist/tests-clay/clay.h +0 -187
- data/ext/rugged/vendor/libgit2-dist/tests-clay/clay_libgit2.h +0 -28
- data/ext/rugged/vendor/libgit2-dist/tests-clay/clay_main.c +0 -1073
- data/ext/rugged/vendor/libgit2-dist/tests-clay/config/stress.c +0 -39
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/path.c +0 -139
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/rmdir.c +0 -50
- data/ext/rugged/vendor/libgit2-dist/tests-clay/core/vector.c +0 -66
- data/ext/rugged/vendor/libgit2-dist/tests-clay/network/remotes.c +0 -50
- data/ext/rugged/vendor/libgit2-dist/tests-clay/repo/init.c +0 -104
- data/ext/rugged/vendor/libgit2-dist/tests-clay/repo/open.c +0 -54
- data/ext/rugged/vendor/libgit2-dist/tests-clay/status/status_data.h +0 -48
- data/ext/rugged/vendor/libgit2-dist/tests-clay/status/worktree.c +0 -124
- data/lib/rugged/objects.rb +0 -45
- data/test/fixtures/testrepo.git/refs/heads/new_name +0 -1
@@ -0,0 +1,224 @@
|
|
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
|
+
#ifndef INCLUDE_git_attr_h__
|
8
|
+
#define INCLUDE_git_attr_h__
|
9
|
+
|
10
|
+
#include "common.h"
|
11
|
+
#include "types.h"
|
12
|
+
|
13
|
+
/**
|
14
|
+
* @file git2/attr.h
|
15
|
+
* @brief Git attribute management routines
|
16
|
+
* @defgroup git_attr Git attribute management routines
|
17
|
+
* @ingroup Git
|
18
|
+
* @{
|
19
|
+
*/
|
20
|
+
GIT_BEGIN_DECL
|
21
|
+
|
22
|
+
/**
|
23
|
+
* GIT_ATTR_TRUE checks if an attribute is set on. In core git
|
24
|
+
* parlance, this the value for "Set" attributes.
|
25
|
+
*
|
26
|
+
* For example, if the attribute file contains:
|
27
|
+
*
|
28
|
+
* *.c foo
|
29
|
+
*
|
30
|
+
* Then for file `xyz.c` looking up attribute "foo" gives a value for
|
31
|
+
* which `GIT_ATTR_TRUE(value)` is true.
|
32
|
+
*/
|
33
|
+
#define GIT_ATTR_TRUE(attr) ((attr) == git_attr__true)
|
34
|
+
|
35
|
+
/**
|
36
|
+
* GIT_ATTR_FALSE checks if an attribute is set off. In core git
|
37
|
+
* parlance, this is the value for attributes that are "Unset" (not to
|
38
|
+
* be confused with values that a "Unspecified").
|
39
|
+
*
|
40
|
+
* For example, if the attribute file contains:
|
41
|
+
*
|
42
|
+
* *.h -foo
|
43
|
+
*
|
44
|
+
* Then for file `zyx.h` looking up attribute "foo" gives a value for
|
45
|
+
* which `GIT_ATTR_FALSE(value)` is true.
|
46
|
+
*/
|
47
|
+
#define GIT_ATTR_FALSE(attr) ((attr) == git_attr__false)
|
48
|
+
|
49
|
+
/**
|
50
|
+
* GIT_ATTR_UNSPECIFIED checks if an attribute is unspecified. This
|
51
|
+
* may be due to the attribute not being mentioned at all or because
|
52
|
+
* the attribute was explicitly set unspecified via the `!` operator.
|
53
|
+
*
|
54
|
+
* For example, if the attribute file contains:
|
55
|
+
*
|
56
|
+
* *.c foo
|
57
|
+
* *.h -foo
|
58
|
+
* onefile.c !foo
|
59
|
+
*
|
60
|
+
* Then for `onefile.c` looking up attribute "foo" yields a value with
|
61
|
+
* `GIT_ATTR_UNSPECIFIED(value)` of true. Also, looking up "foo" on
|
62
|
+
* file `onefile.rb` or looking up "bar" on any file will all give
|
63
|
+
* `GIT_ATTR_UNSPECIFIED(value)` of true.
|
64
|
+
*/
|
65
|
+
#define GIT_ATTR_UNSPECIFIED(attr) (!(attr) || (attr) == git_attr__unset)
|
66
|
+
|
67
|
+
/**
|
68
|
+
* GIT_ATTR_HAS_VALUE checks if an attribute is set to a value (as
|
69
|
+
* opposed to TRUE, FALSE or UNSPECIFIED). This would be the case if
|
70
|
+
* for a file with something like:
|
71
|
+
*
|
72
|
+
* *.txt eol=lf
|
73
|
+
*
|
74
|
+
* Given this, looking up "eol" for `onefile.txt` will give back the
|
75
|
+
* string "lf" and `GIT_ATTR_SET_TO_VALUE(attr)` will return true.
|
76
|
+
*/
|
77
|
+
#define GIT_ATTR_HAS_VALUE(attr) \
|
78
|
+
((attr) && (attr) != git_attr__unset && \
|
79
|
+
(attr) != git_attr__true && (attr) != git_attr__false)
|
80
|
+
|
81
|
+
GIT_EXTERN(const char *) git_attr__true;
|
82
|
+
GIT_EXTERN(const char *) git_attr__false;
|
83
|
+
GIT_EXTERN(const char *) git_attr__unset;
|
84
|
+
|
85
|
+
/**
|
86
|
+
* Check attribute flags: Reading values from index and working directory.
|
87
|
+
*
|
88
|
+
* When checking attributes, it is possible to check attribute files
|
89
|
+
* in both the working directory (if there is one) and the index (if
|
90
|
+
* there is one). You can explicitly choose where to check and in
|
91
|
+
* which order using the following flags.
|
92
|
+
*
|
93
|
+
* Core git usually checks the working directory then the index,
|
94
|
+
* except during a checkout when it checks the index first. It will
|
95
|
+
* use index only for creating archives or for a bare repo (if an
|
96
|
+
* index has been specified for the bare repo).
|
97
|
+
*/
|
98
|
+
#define GIT_ATTR_CHECK_FILE_THEN_INDEX 0
|
99
|
+
#define GIT_ATTR_CHECK_INDEX_THEN_FILE 1
|
100
|
+
#define GIT_ATTR_CHECK_INDEX_ONLY 2
|
101
|
+
|
102
|
+
/**
|
103
|
+
* Check attribute flags: Using the system attributes file.
|
104
|
+
*
|
105
|
+
* Normally, attribute checks include looking in the /etc (or system
|
106
|
+
* equivalent) directory for a `gitattributes` file. Passing this
|
107
|
+
* flag will cause attribute checks to ignore that file.
|
108
|
+
*/
|
109
|
+
#define GIT_ATTR_CHECK_NO_SYSTEM (1 << 2)
|
110
|
+
|
111
|
+
/**
|
112
|
+
* Look up the value of one git attribute for path.
|
113
|
+
*
|
114
|
+
* @param value_out Output of the value of the attribute. Use the GIT_ATTR_...
|
115
|
+
* macros to test for TRUE, FALSE, UNSPECIFIED, etc. or just
|
116
|
+
* use the string value for attributes set to a value. You
|
117
|
+
* should NOT modify or free this value.
|
118
|
+
* @param repo The repository containing the path.
|
119
|
+
* @param flags A combination of GIT_ATTR_CHECK... flags.
|
120
|
+
* @param path The path to check for attributes. Relative paths are
|
121
|
+
* interpreted relative to the repo root. The file does
|
122
|
+
* not have to exist, but if it does not, then it will be
|
123
|
+
* treated as a plain file (not a directory).
|
124
|
+
* @param name The name of the attribute to look up.
|
125
|
+
*/
|
126
|
+
GIT_EXTERN(int) git_attr_get(
|
127
|
+
const char **value_out,
|
128
|
+
git_repository *repo,
|
129
|
+
uint32_t flags,
|
130
|
+
const char *path,
|
131
|
+
const char *name);
|
132
|
+
|
133
|
+
/**
|
134
|
+
* Look up a list of git attributes for path.
|
135
|
+
*
|
136
|
+
* Use this if you have a known list of attributes that you want to
|
137
|
+
* look up in a single call. This is somewhat more efficient than
|
138
|
+
* calling `git_attr_get()` multiple times.
|
139
|
+
*
|
140
|
+
* For example, you might write:
|
141
|
+
*
|
142
|
+
* const char *attrs[] = { "crlf", "diff", "foo" };
|
143
|
+
* const char **values[3];
|
144
|
+
* git_attr_get_many(values, repo, 0, "my/fun/file.c", 3, attrs);
|
145
|
+
*
|
146
|
+
* Then you could loop through the 3 values to get the settings for
|
147
|
+
* the three attributes you asked about.
|
148
|
+
*
|
149
|
+
* @param values An array of num_attr entries that will have string
|
150
|
+
* pointers written into it for the values of the attributes.
|
151
|
+
* You should not modify or free the values that are written
|
152
|
+
* into this array (although of course, you should free the
|
153
|
+
* array itself if you allocated it).
|
154
|
+
* @param repo The repository containing the path.
|
155
|
+
* @param flags A combination of GIT_ATTR_CHECK... flags.
|
156
|
+
* @param path The path inside the repo to check attributes. This
|
157
|
+
* does not have to exist, but if it does not, then
|
158
|
+
* it will be treated as a plain file (i.e. not a directory).
|
159
|
+
* @param num_attr The number of attributes being looked up
|
160
|
+
* @param names An array of num_attr strings containing attribute names.
|
161
|
+
*/
|
162
|
+
GIT_EXTERN(int) git_attr_get_many(
|
163
|
+
const char **values_out,
|
164
|
+
git_repository *repo,
|
165
|
+
uint32_t flags,
|
166
|
+
const char *path,
|
167
|
+
size_t num_attr,
|
168
|
+
const char **names);
|
169
|
+
|
170
|
+
/**
|
171
|
+
* Loop over all the git attributes for a path.
|
172
|
+
*
|
173
|
+
* @param repo The repository containing the path.
|
174
|
+
* @param flags A combination of GIT_ATTR_CHECK... flags.
|
175
|
+
* @param path The path inside the repo to check attributes. This
|
176
|
+
* does not have to exist, but if it does not, then
|
177
|
+
* it will be treated as a plain file (i.e. not a directory).
|
178
|
+
* @param callback The function that will be invoked on each attribute
|
179
|
+
* and attribute value. The name parameter will be the name
|
180
|
+
* of the attribute and the value will be the value it is
|
181
|
+
* set to, including possibly NULL if the attribute is
|
182
|
+
* explicitly set to UNSPECIFIED using the ! sign. This
|
183
|
+
* will be invoked only once per attribute name, even if
|
184
|
+
* there are multiple rules for a given file. The highest
|
185
|
+
* priority rule will be used.
|
186
|
+
* @param payload Passed on as extra parameter to callback function.
|
187
|
+
*/
|
188
|
+
GIT_EXTERN(int) git_attr_foreach(
|
189
|
+
git_repository *repo,
|
190
|
+
uint32_t flags,
|
191
|
+
const char *path,
|
192
|
+
int (*callback)(const char *name, const char *value, void *payload),
|
193
|
+
void *payload);
|
194
|
+
|
195
|
+
/**
|
196
|
+
* Flush the gitattributes cache.
|
197
|
+
*
|
198
|
+
* Call this if you have reason to believe that the attributes files on
|
199
|
+
* disk no longer match the cached contents of memory. This will cause
|
200
|
+
* the attributes files to be reloaded the next time that an attribute
|
201
|
+
* access function is called.
|
202
|
+
*/
|
203
|
+
GIT_EXTERN(void) git_attr_cache_flush(
|
204
|
+
git_repository *repo);
|
205
|
+
|
206
|
+
/**
|
207
|
+
* Add a macro definition.
|
208
|
+
*
|
209
|
+
* Macros will automatically be loaded from the top level `.gitattributes`
|
210
|
+
* file of the repository (plus the build-in "binary" macro). This
|
211
|
+
* function allows you to add others. For example, to add the default
|
212
|
+
* macro, you would call:
|
213
|
+
*
|
214
|
+
* git_attr_add_macro(repo, "binary", "-diff -crlf");
|
215
|
+
*/
|
216
|
+
GIT_EXTERN(int) git_attr_add_macro(
|
217
|
+
git_repository *repo,
|
218
|
+
const char *name,
|
219
|
+
const char *values);
|
220
|
+
|
221
|
+
/** @} */
|
222
|
+
GIT_END_DECL
|
223
|
+
#endif
|
224
|
+
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (C) 2009-
|
2
|
+
* Copyright (C) 2009-2012 the libgit2 contributors
|
3
3
|
*
|
4
4
|
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
5
|
* a Linking Exception. For full terms see the included COPYING file.
|
@@ -27,7 +27,7 @@ GIT_BEGIN_DECL
|
|
27
27
|
* @param blob pointer to the looked up blob
|
28
28
|
* @param repo the repo to use when locating the blob.
|
29
29
|
* @param id identity of the blob to locate.
|
30
|
-
* @return
|
30
|
+
* @return 0 or an error code
|
31
31
|
*/
|
32
32
|
GIT_INLINE(int) git_blob_lookup(git_blob **blob, git_repository *repo, const git_oid *id)
|
33
33
|
{
|
@@ -44,7 +44,7 @@ GIT_INLINE(int) git_blob_lookup(git_blob **blob, git_repository *repo, const git
|
|
44
44
|
* @param repo the repo to use when locating the blob.
|
45
45
|
* @param id identity of the blob to locate.
|
46
46
|
* @param len the length of the short identifier
|
47
|
-
* @return
|
47
|
+
* @return 0 or an error code
|
48
48
|
*/
|
49
49
|
GIT_INLINE(int) git_blob_lookup_prefix(git_blob **blob, git_repository *repo, const git_oid *id, unsigned int len)
|
50
50
|
{
|
@@ -99,10 +99,64 @@ GIT_EXTERN(size_t) git_blob_rawsize(git_blob *blob);
|
|
99
99
|
* this repository cannot be bare
|
100
100
|
* @param path file from which the blob will be created,
|
101
101
|
* relative to the repository's working dir
|
102
|
-
* @return
|
102
|
+
* @return 0 or an error code
|
103
103
|
*/
|
104
104
|
GIT_EXTERN(int) git_blob_create_fromfile(git_oid *oid, git_repository *repo, const char *path);
|
105
105
|
|
106
|
+
/**
|
107
|
+
* Read a file from the filesystem and write its content
|
108
|
+
* to the Object Database as a loose blob
|
109
|
+
*
|
110
|
+
* @param oid return the id of the written blob
|
111
|
+
* @param repo repository where the blob will be written.
|
112
|
+
* this repository can be bare or not
|
113
|
+
* @param path file from which the blob will be created
|
114
|
+
* @return 0 or an error code
|
115
|
+
*/
|
116
|
+
GIT_EXTERN(int) git_blob_create_fromdisk(git_oid *oid, git_repository *repo, const char *path);
|
117
|
+
|
118
|
+
/**
|
119
|
+
* Write a loose blob to the Object Database from a
|
120
|
+
* provider of chunks of data.
|
121
|
+
*
|
122
|
+
* Provided the `hintpath` parameter is filled, its value
|
123
|
+
* will help to determine what git filters should be applied
|
124
|
+
* to the object before it can be placed to the object database.
|
125
|
+
*
|
126
|
+
*
|
127
|
+
* The implementation of the callback has to respect the
|
128
|
+
* following rules:
|
129
|
+
*
|
130
|
+
* - `content` will have to be filled by the consumer. The maximum number
|
131
|
+
* of bytes that the buffer can accept per call is defined by the
|
132
|
+
* `max_length` parameter. Allocation and freeing of the buffer will be taken
|
133
|
+
* care of by the function.
|
134
|
+
*
|
135
|
+
* - The callback is expected to return the number of bytes
|
136
|
+
* that `content` have been filled with.
|
137
|
+
*
|
138
|
+
* - When there is no more data to stream, the callback should
|
139
|
+
* return 0. This will prevent it from being invoked anymore.
|
140
|
+
*
|
141
|
+
* - When an error occurs, the callback should return -1.
|
142
|
+
*
|
143
|
+
*
|
144
|
+
* @param oid Return the id of the written blob
|
145
|
+
*
|
146
|
+
* @param repo repository where the blob will be written.
|
147
|
+
* This repository can be bare or not.
|
148
|
+
*
|
149
|
+
* @param hintpath if not NULL, will help selecting the filters
|
150
|
+
* to apply onto the content of the blob to be created.
|
151
|
+
*
|
152
|
+
* @return GIT_SUCCESS or an error code
|
153
|
+
*/
|
154
|
+
GIT_EXTERN(int) git_blob_create_fromchunks(
|
155
|
+
git_oid *oid,
|
156
|
+
git_repository *repo,
|
157
|
+
const char *hintpath,
|
158
|
+
int (*source_cb)(char *content, size_t max_length, void *payload),
|
159
|
+
void *payload);
|
106
160
|
|
107
161
|
/**
|
108
162
|
* Write an in-memory buffer to the ODB as a blob
|
@@ -111,7 +165,7 @@ GIT_EXTERN(int) git_blob_create_fromfile(git_oid *oid, git_repository *repo, con
|
|
111
165
|
* @param repo repository where to blob will be written
|
112
166
|
* @param buffer data to be written into the blob
|
113
167
|
* @param len length of the data
|
114
|
-
* @return
|
168
|
+
* @return 0 or an error code
|
115
169
|
*/
|
116
170
|
GIT_EXTERN(int) git_blob_create_frombuffer(git_oid *oid, git_repository *repo, const void *buffer, size_t len);
|
117
171
|
|
@@ -1,15 +1,122 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (C) 2009-
|
2
|
+
* Copyright (C) 2009-2012 the libgit2 contributors
|
3
3
|
*
|
4
4
|
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
5
|
* a Linking Exception. For full terms see the included COPYING file.
|
6
6
|
*/
|
7
|
-
#ifndef
|
8
|
-
#define
|
7
|
+
#ifndef INCLUDE_git_branch_h__
|
8
|
+
#define INCLUDE_git_branch_h__
|
9
9
|
|
10
|
-
|
11
|
-
|
12
|
-
char *merge;
|
13
|
-
};
|
10
|
+
#include "common.h"
|
11
|
+
#include "types.h"
|
14
12
|
|
13
|
+
/**
|
14
|
+
* @file git2/branch.h
|
15
|
+
* @brief Git branch parsing routines
|
16
|
+
* @defgroup git_branch Git branch management
|
17
|
+
* @ingroup Git
|
18
|
+
* @{
|
19
|
+
*/
|
20
|
+
GIT_BEGIN_DECL
|
21
|
+
|
22
|
+
/**
|
23
|
+
* Create a new branch pointing at a target commit
|
24
|
+
*
|
25
|
+
* A new direct reference will be created pointing to
|
26
|
+
* this target commit. If `force` is true and a reference
|
27
|
+
* already exists with the given name, it'll be replaced.
|
28
|
+
*
|
29
|
+
* @param oid_out Pointer where to store the OID of the target commit.
|
30
|
+
*
|
31
|
+
* @param repo Repository where to store the branch.
|
32
|
+
*
|
33
|
+
* @param branch_name Name for the branch; this name is
|
34
|
+
* validated for consistency. It should also not conflict with
|
35
|
+
* an already existing branch name.
|
36
|
+
*
|
37
|
+
* @param target Object to which this branch should point. This object
|
38
|
+
* must belong to the given `repo` and can either be a git_commit or a
|
39
|
+
* git_tag. When a git_tag is being passed, it should be dereferencable
|
40
|
+
* to a git_commit which oid will be used as the target of the branch.
|
41
|
+
*
|
42
|
+
* @param force Overwrite existing branch.
|
43
|
+
*
|
44
|
+
* @return 0 or an error code.
|
45
|
+
* A proper reference is written in the refs/heads namespace
|
46
|
+
* pointing to the provided target commit.
|
47
|
+
*/
|
48
|
+
GIT_EXTERN(int) git_branch_create(
|
49
|
+
git_oid *oid_out,
|
50
|
+
git_repository *repo,
|
51
|
+
const char *branch_name,
|
52
|
+
const git_object *target,
|
53
|
+
int force);
|
54
|
+
|
55
|
+
/**
|
56
|
+
* Delete an existing branch reference.
|
57
|
+
*
|
58
|
+
* @param repo Repository where lives the branch.
|
59
|
+
*
|
60
|
+
* @param branch_name Name of the branch to be deleted;
|
61
|
+
* this name is validated for consistency.
|
62
|
+
*
|
63
|
+
* @param branch_type Type of the considered branch. This should
|
64
|
+
* be valued with either GIT_BRANCH_LOCAL or GIT_BRANCH_REMOTE.
|
65
|
+
*
|
66
|
+
* @return 0 on success, GIT_ENOTFOUND if the branch
|
67
|
+
* doesn't exist or an error code.
|
68
|
+
*/
|
69
|
+
GIT_EXTERN(int) git_branch_delete(
|
70
|
+
git_repository *repo,
|
71
|
+
const char *branch_name,
|
72
|
+
git_branch_t branch_type);
|
73
|
+
|
74
|
+
/**
|
75
|
+
* Fill a list with all the branches in the Repository
|
76
|
+
*
|
77
|
+
* The string array will be filled with the names of the
|
78
|
+
* matching branches; these values are owned by the user and
|
79
|
+
* should be free'd manually when no longer needed, using
|
80
|
+
* `git_strarray_free`.
|
81
|
+
*
|
82
|
+
* @param branch_names Pointer to a git_strarray structure
|
83
|
+
* where the branch names will be stored.
|
84
|
+
*
|
85
|
+
* @param repo Repository where to find the branches.
|
86
|
+
*
|
87
|
+
* @param list_flags Filtering flags for the branch
|
88
|
+
* listing. Valid values are GIT_BRANCH_LOCAL, GIT_BRANCH_REMOTE
|
89
|
+
* or a combination of the two.
|
90
|
+
*
|
91
|
+
* @return 0 or an error code.
|
92
|
+
*/
|
93
|
+
GIT_EXTERN(int) git_branch_list(
|
94
|
+
git_strarray *branch_names,
|
95
|
+
git_repository *repo,
|
96
|
+
unsigned int list_flags);
|
97
|
+
|
98
|
+
/**
|
99
|
+
* Move/rename an existing branch reference.
|
100
|
+
*
|
101
|
+
* @param repo Repository where lives the branch.
|
102
|
+
*
|
103
|
+
* @param old_branch_name Current name of the branch to be moved;
|
104
|
+
* this name is validated for consistency.
|
105
|
+
*
|
106
|
+
* @param new_branch_name Target name of the branch once the move
|
107
|
+
* is performed; this name is validated for consistency.
|
108
|
+
*
|
109
|
+
* @param force Overwrite existing branch.
|
110
|
+
*
|
111
|
+
* @return 0 on success, GIT_ENOTFOUND if the branch
|
112
|
+
* doesn't exist or an error code.
|
113
|
+
*/
|
114
|
+
GIT_EXTERN(int) git_branch_move(
|
115
|
+
git_repository *repo,
|
116
|
+
const char *old_branch_name,
|
117
|
+
const char *new_branch_name,
|
118
|
+
int force);
|
119
|
+
|
120
|
+
/** @} */
|
121
|
+
GIT_END_DECL
|
15
122
|
#endif
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (C) 2009-
|
2
|
+
* Copyright (C) 2009-2012 the libgit2 contributors
|
3
3
|
*
|
4
4
|
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
5
|
* a Linking Exception. For full terms see the included COPYING file.
|
@@ -28,7 +28,7 @@ GIT_BEGIN_DECL
|
|
28
28
|
* @param repo the repo to use when locating the commit.
|
29
29
|
* @param id identity of the commit to locate. If the object is
|
30
30
|
* an annotated tag it will be peeled back to the commit.
|
31
|
-
* @return
|
31
|
+
* @return 0 or an error code
|
32
32
|
*/
|
33
33
|
GIT_INLINE(int) git_commit_lookup(git_commit **commit, git_repository *repo, const git_oid *id)
|
34
34
|
{
|
@@ -46,7 +46,7 @@ GIT_INLINE(int) git_commit_lookup(git_commit **commit, git_repository *repo, con
|
|
46
46
|
* @param id identity of the commit to locate. If the object is
|
47
47
|
* an annotated tag it will be peeled back to the commit.
|
48
48
|
* @param len the length of the short identifier
|
49
|
-
* @return
|
49
|
+
* @return 0 or an error code
|
50
50
|
*/
|
51
51
|
GIT_INLINE(int) git_commit_lookup_prefix(git_commit **commit, git_repository *repo, const git_oid *id, unsigned len)
|
52
52
|
{
|
@@ -135,7 +135,7 @@ GIT_EXTERN(const git_signature *) git_commit_author(git_commit *commit);
|
|
135
135
|
*
|
136
136
|
* @param tree_out pointer where to store the tree object
|
137
137
|
* @param commit a previously loaded commit.
|
138
|
-
* @return
|
138
|
+
* @return 0 or an error code
|
139
139
|
*/
|
140
140
|
GIT_EXTERN(int) git_commit_tree(git_tree **tree_out, git_commit *commit);
|
141
141
|
|
@@ -163,7 +163,7 @@ GIT_EXTERN(unsigned int) git_commit_parentcount(git_commit *commit);
|
|
163
163
|
* @param parent Pointer where to store the parent commit
|
164
164
|
* @param commit a previously loaded commit.
|
165
165
|
* @param n the position of the parent (from 0 to `parentcount`)
|
166
|
-
* @return
|
166
|
+
* @return 0 or an error code
|
167
167
|
*/
|
168
168
|
GIT_EXTERN(int) git_commit_parent(git_commit **parent, git_commit *commit, unsigned int n);
|
169
169
|
|
@@ -182,6 +182,9 @@ GIT_EXTERN(const git_oid *) git_commit_parent_oid(git_commit *commit, unsigned i
|
|
182
182
|
* Create a new commit in the repository using `git_object`
|
183
183
|
* instances as parameters.
|
184
184
|
*
|
185
|
+
* The message will be cleaned up from excess whitespace
|
186
|
+
* it will be made sure that the last line ends with a '\n'.
|
187
|
+
*
|
185
188
|
* @param oid Pointer where to store the OID of the
|
186
189
|
* newly created commit
|
187
190
|
*
|
@@ -191,7 +194,8 @@ GIT_EXTERN(const git_oid *) git_commit_parent_oid(git_commit *commit, unsigned i
|
|
191
194
|
* will be updated to point to this commit. If the reference
|
192
195
|
* is not direct, it will be resolved to a direct reference.
|
193
196
|
* Use "HEAD" to update the HEAD of the current branch and
|
194
|
-
* make it point to this commit
|
197
|
+
* make it point to this commit. If the reference doesn't
|
198
|
+
* exist yet, it will be created.
|
195
199
|
*
|
196
200
|
* @param author Signature representing the author and the authory
|
197
201
|
* time of this commit
|
@@ -217,7 +221,7 @@ GIT_EXTERN(const git_oid *) git_commit_parent_oid(git_commit *commit, unsigned i
|
|
217
221
|
* array may be NULL if `parent_count` is 0 (root commit). All the
|
218
222
|
* given commits must be owned by the `repo`.
|
219
223
|
*
|
220
|
-
* @return
|
224
|
+
* @return 0 or an error code
|
221
225
|
* The created commit will be written to the Object Database and
|
222
226
|
* the given reference will be updated to point to it
|
223
227
|
*/
|
@@ -237,6 +241,9 @@ GIT_EXTERN(int) git_commit_create(
|
|
237
241
|
* Create a new commit in the repository using a variable
|
238
242
|
* argument list.
|
239
243
|
*
|
244
|
+
* The message will be cleaned up from excess whitespace
|
245
|
+
* it will be made sure that the last line ends with a '\n'.
|
246
|
+
*
|
240
247
|
* The parents for the commit are specified as a variable
|
241
248
|
* list of pointers to `const git_commit *`. Note that this
|
242
249
|
* is a convenience method which may not be safe to export
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (C) 2009-
|
2
|
+
* Copyright (C) 2009-2012 the libgit2 contributors
|
3
3
|
*
|
4
4
|
* This file is part of libgit2, distributed under the GNU GPL v2 with
|
5
5
|
* a Linking Exception. For full terms see the included COPYING file.
|
@@ -51,7 +51,7 @@
|
|
51
51
|
# define GIT_FORMAT_PRINTF(a,b) /* empty */
|
52
52
|
#endif
|
53
53
|
|
54
|
-
#if (defined(_WIN32)
|
54
|
+
#if (defined(_WIN32)) && !defined(__CYGWIN__)
|
55
55
|
#define GIT_WIN32 1
|
56
56
|
#endif
|
57
57
|
|
@@ -77,7 +77,7 @@ GIT_BEGIN_DECL
|
|
77
77
|
#endif
|
78
78
|
|
79
79
|
/**
|
80
|
-
* The maximum length of a
|
80
|
+
* The maximum length of a valid git path.
|
81
81
|
*/
|
82
82
|
#define GIT_PATH_MAX 4096
|
83
83
|
|
@@ -87,6 +87,7 @@ typedef struct {
|
|
87
87
|
} git_strarray;
|
88
88
|
|
89
89
|
GIT_EXTERN(void) git_strarray_free(git_strarray *array);
|
90
|
+
GIT_EXTERN(int) git_strarray_copy(git_strarray *tgt, const git_strarray *src);
|
90
91
|
|
91
92
|
/**
|
92
93
|
* Return the version of the libgit2 library
|