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,44 @@
|
|
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_reset_h__
|
8
|
+
#define INCLUDE_git_reset_h__
|
9
|
+
|
10
|
+
/**
|
11
|
+
* @file git2/reset.h
|
12
|
+
* @brief Git reset management routines
|
13
|
+
* @ingroup Git
|
14
|
+
* @{
|
15
|
+
*/
|
16
|
+
GIT_BEGIN_DECL
|
17
|
+
|
18
|
+
/**
|
19
|
+
* Sets the current head to the specified commit oid and optionally
|
20
|
+
* resets the index and working tree to match.
|
21
|
+
*
|
22
|
+
* When specifying a Soft kind of reset, the head will be moved to the commit.
|
23
|
+
*
|
24
|
+
* Specifying a Mixed kind of reset will trigger a Soft reset and the index will
|
25
|
+
* be replaced with the content of the commit tree.
|
26
|
+
*
|
27
|
+
* TODO: Implement remaining kinds of resets.
|
28
|
+
*
|
29
|
+
* @param repo Repository where to perform the reset operation.
|
30
|
+
*
|
31
|
+
* @param target Object to which the Head should be moved to. This object
|
32
|
+
* must belong to the given `repo` and can either be a git_commit or a
|
33
|
+
* git_tag. When a git_tag is being passed, it should be dereferencable
|
34
|
+
* to a git_commit which oid will be used as the target of the branch.
|
35
|
+
*
|
36
|
+
* @param reset_type Kind of reset operation to perform.
|
37
|
+
*
|
38
|
+
* @return GIT_SUCCESS or an error code
|
39
|
+
*/
|
40
|
+
GIT_EXTERN(int) git_reset(git_repository *repo, const git_object *target, git_reset_type reset_type);
|
41
|
+
|
42
|
+
/** @} */
|
43
|
+
GIT_END_DECL
|
44
|
+
#endif
|
@@ -0,0 +1,36 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 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_revparse_h__
|
8
|
+
#define INCLUDE_git_revparse_h__
|
9
|
+
|
10
|
+
#include "common.h"
|
11
|
+
#include "types.h"
|
12
|
+
|
13
|
+
|
14
|
+
/**
|
15
|
+
* @file git2/revparse.h
|
16
|
+
* @brief Git revision parsing routines
|
17
|
+
* @defgroup git_revparse Git revision parsing routines
|
18
|
+
* @ingroup Git
|
19
|
+
* @{
|
20
|
+
*/
|
21
|
+
GIT_BEGIN_DECL
|
22
|
+
|
23
|
+
/**
|
24
|
+
* Find an object, as specified by a revision string. See `man gitrevisions`, or the documentation
|
25
|
+
* for `git rev-parse` for information on the syntax accepted.
|
26
|
+
*
|
27
|
+
* @param out pointer to output object
|
28
|
+
* @param repo the repository to search in
|
29
|
+
* @param spec the textual specification for an object
|
30
|
+
* @return on success, GIT_ERROR otherwise (use git_error_last for information about the error)
|
31
|
+
*/
|
32
|
+
GIT_EXTERN(int) git_revparse_single(git_object **out, git_repository *repo, const char *spec);
|
33
|
+
|
34
|
+
/** @} */
|
35
|
+
GIT_END_DECL
|
36
|
+
#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.
|
@@ -65,7 +65,7 @@ GIT_BEGIN_DECL
|
|
65
65
|
*
|
66
66
|
* @param walker pointer to the new revision walker
|
67
67
|
* @param repo the repo to walk through
|
68
|
-
* @return
|
68
|
+
* @return 0 or an error code
|
69
69
|
*/
|
70
70
|
GIT_EXTERN(int) git_revwalk_new(git_revwalk **walker, git_repository *repo);
|
71
71
|
|
@@ -97,10 +97,32 @@ GIT_EXTERN(void) git_revwalk_reset(git_revwalk *walker);
|
|
97
97
|
*
|
98
98
|
* @param walk the walker being used for the traversal.
|
99
99
|
* @param oid the oid of the commit to start from.
|
100
|
-
* @return
|
100
|
+
* @return 0 or an error code
|
101
101
|
*/
|
102
102
|
GIT_EXTERN(int) git_revwalk_push(git_revwalk *walk, const git_oid *oid);
|
103
103
|
|
104
|
+
/**
|
105
|
+
* Push matching references
|
106
|
+
*
|
107
|
+
* The OIDs pointed to by the references that match the given glob
|
108
|
+
* pattern will be pushed to the revision walker.
|
109
|
+
*
|
110
|
+
* A leading 'refs/' is implied it not present as well as a trailing
|
111
|
+
* '/ *' if the glob lacks '?', '*' or '['.
|
112
|
+
*
|
113
|
+
* @param walk the walker being used for the traversal
|
114
|
+
* @param glob the glob pattern references should match
|
115
|
+
* @return 0 or an error code
|
116
|
+
*/
|
117
|
+
GIT_EXTERN(int) git_revwalk_push_glob(git_revwalk *walk, const char *glob);
|
118
|
+
|
119
|
+
/**
|
120
|
+
* Push the repository's HEAD
|
121
|
+
*
|
122
|
+
* @param walk the walker being used for the traversal
|
123
|
+
* @return 0 or an error code
|
124
|
+
*/
|
125
|
+
GIT_EXTERN(int) git_revwalk_push_head(git_revwalk *walk);
|
104
126
|
|
105
127
|
/**
|
106
128
|
* Mark a commit (and its ancestors) uninteresting for the output.
|
@@ -113,10 +135,56 @@ GIT_EXTERN(int) git_revwalk_push(git_revwalk *walk, const git_oid *oid);
|
|
113
135
|
*
|
114
136
|
* @param walk the walker being used for the traversal.
|
115
137
|
* @param oid the oid of commit that will be ignored during the traversal
|
116
|
-
* @return
|
138
|
+
* @return 0 or an error code
|
117
139
|
*/
|
118
140
|
GIT_EXTERN(int) git_revwalk_hide(git_revwalk *walk, const git_oid *oid);
|
119
141
|
|
142
|
+
/**
|
143
|
+
* Hide matching references.
|
144
|
+
*
|
145
|
+
* The OIDs pointed to by the references that match the given glob
|
146
|
+
* pattern and their ancestors will be hidden from the output on the
|
147
|
+
* revision walk.
|
148
|
+
*
|
149
|
+
* A leading 'refs/' is implied it not present as well as a trailing
|
150
|
+
* '/ *' if the glob lacks '?', '*' or '['.
|
151
|
+
*
|
152
|
+
* @param walk the walker being used for the traversal
|
153
|
+
* @param glob the glob pattern references should match
|
154
|
+
* @return 0 or an error code
|
155
|
+
*/
|
156
|
+
GIT_EXTERN(int) git_revwalk_hide_glob(git_revwalk *walk, const char *glob);
|
157
|
+
|
158
|
+
/**
|
159
|
+
* Hide the repository's HEAD
|
160
|
+
*
|
161
|
+
* @param walk the walker being used for the traversal
|
162
|
+
* @return 0 or an error code
|
163
|
+
*/
|
164
|
+
GIT_EXTERN(int) git_revwalk_hide_head(git_revwalk *walk);
|
165
|
+
|
166
|
+
/**
|
167
|
+
* Push the OID pointed to by a reference
|
168
|
+
*
|
169
|
+
* The reference must point to a commit.
|
170
|
+
*
|
171
|
+
* @param walk the walker being used for the traversal
|
172
|
+
* @param refname the reference to push
|
173
|
+
* @return 0 or an error code
|
174
|
+
*/
|
175
|
+
GIT_EXTERN(int) git_revwalk_push_ref(git_revwalk *walk, const char *refname);
|
176
|
+
|
177
|
+
/**
|
178
|
+
* Hide the OID pointed to by a reference
|
179
|
+
*
|
180
|
+
* The reference must point to a commit.
|
181
|
+
*
|
182
|
+
* @param walk the walker being used for the traversal
|
183
|
+
* @param refname the reference to hide
|
184
|
+
* @return 0 or an error code
|
185
|
+
*/
|
186
|
+
GIT_EXTERN(int) git_revwalk_hide_ref(git_revwalk *walk, const char *refname);
|
187
|
+
|
120
188
|
/**
|
121
189
|
* Get the next commit from the revision walk.
|
122
190
|
*
|
@@ -132,8 +200,8 @@ GIT_EXTERN(int) git_revwalk_hide(git_revwalk *walk, const git_oid *oid);
|
|
132
200
|
*
|
133
201
|
* @param oid Pointer where to store the oid of the next commit
|
134
202
|
* @param walk the walker to pop the commit from.
|
135
|
-
* @return
|
136
|
-
*
|
203
|
+
* @return 0 if the next commit was found;
|
204
|
+
* GIT_REVWALKOVER if there are no commits left to iterate
|
137
205
|
*/
|
138
206
|
GIT_EXTERN(int) git_revwalk_next(git_oid *oid, git_revwalk *walk);
|
139
207
|
|
@@ -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 email email of the person
|
29
29
|
* @param time time when the action happened
|
30
30
|
* @param offset timezone offset in minutes for the time
|
31
|
-
* @return
|
31
|
+
* @return 0 or an error code
|
32
32
|
*/
|
33
33
|
GIT_EXTERN(int) git_signature_new(git_signature **sig_out, const char *name, const char *email, git_time_t time, int offset);
|
34
34
|
|
@@ -39,7 +39,7 @@ GIT_EXTERN(int) git_signature_new(git_signature **sig_out, const char *name, con
|
|
39
39
|
* @param sig_out new signature, in case of error NULL
|
40
40
|
* @param name name of the person
|
41
41
|
* @param email email of the person
|
42
|
-
* @return
|
42
|
+
* @return 0 or an error code
|
43
43
|
*/
|
44
44
|
GIT_EXTERN(int) git_signature_now(git_signature **sig_out, const char *name, const char *email);
|
45
45
|
|
@@ -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.
|
@@ -19,32 +19,111 @@
|
|
19
19
|
*/
|
20
20
|
GIT_BEGIN_DECL
|
21
21
|
|
22
|
-
|
23
|
-
|
24
|
-
#define GIT_STATUS_INDEX_NEW (1 << 0)
|
25
|
-
#define GIT_STATUS_INDEX_MODIFIED (1 << 1)
|
26
|
-
#define GIT_STATUS_INDEX_DELETED (1 << 2)
|
22
|
+
enum {
|
23
|
+
GIT_STATUS_CURRENT = 0,
|
27
24
|
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
#define GIT_STATUS_WT_DELETED (1 << 5)
|
25
|
+
GIT_STATUS_INDEX_NEW = (1 << 0),
|
26
|
+
GIT_STATUS_INDEX_MODIFIED = (1 << 1),
|
27
|
+
GIT_STATUS_INDEX_DELETED = (1 << 2),
|
32
28
|
|
33
|
-
|
34
|
-
|
29
|
+
GIT_STATUS_WT_NEW = (1 << 3),
|
30
|
+
GIT_STATUS_WT_MODIFIED = (1 << 4),
|
31
|
+
GIT_STATUS_WT_DELETED = (1 << 5),
|
32
|
+
|
33
|
+
GIT_STATUS_IGNORED = (1 << 6),
|
34
|
+
};
|
35
35
|
|
36
36
|
/**
|
37
37
|
* Gather file statuses and run a callback for each one.
|
38
38
|
*
|
39
|
-
* The callback is passed the path of the file, the status and the data
|
40
|
-
* passed to this function. If the callback returns something other
|
41
|
-
*
|
39
|
+
* The callback is passed the path of the file, the status and the data
|
40
|
+
* pointer passed to this function. If the callback returns something other
|
41
|
+
* than 0, this function will return that value.
|
42
42
|
*
|
43
43
|
* @param repo a repository object
|
44
44
|
* @param callback the function to call on each file
|
45
|
-
* @return
|
45
|
+
* @return 0 on success or the return value of the callback that was non-zero
|
46
|
+
*/
|
47
|
+
GIT_EXTERN(int) git_status_foreach(
|
48
|
+
git_repository *repo,
|
49
|
+
int (*callback)(const char *, unsigned int, void *),
|
50
|
+
void *payload);
|
51
|
+
|
52
|
+
/**
|
53
|
+
* Select the files on which to report status.
|
54
|
+
*
|
55
|
+
* - GIT_STATUS_SHOW_INDEX_AND_WORKDIR is the default. This is the
|
56
|
+
* rough equivalent of `git status --porcelain` where each file
|
57
|
+
* will receive a callback indicating its status in the index and
|
58
|
+
* in the workdir.
|
59
|
+
* - GIT_STATUS_SHOW_INDEX_ONLY will only make callbacks for index
|
60
|
+
* side of status. The status of the index contents relative to
|
61
|
+
* the HEAD will be given.
|
62
|
+
* - GIT_STATUS_SHOW_WORKDIR_ONLY will only make callbacks for the
|
63
|
+
* workdir side of status, reporting the status of workdir content
|
64
|
+
* relative to the index.
|
65
|
+
* - GIT_STATUS_SHOW_INDEX_THEN_WORKDIR behaves like index-only
|
66
|
+
* followed by workdir-only, causing two callbacks to be issued
|
67
|
+
* per file (first index then workdir). This is slightly more
|
68
|
+
* efficient than making separate calls. This makes it easier to
|
69
|
+
* emulate the output of a plain `git status`.
|
70
|
+
*/
|
71
|
+
typedef enum {
|
72
|
+
GIT_STATUS_SHOW_INDEX_AND_WORKDIR = 0,
|
73
|
+
GIT_STATUS_SHOW_INDEX_ONLY = 1,
|
74
|
+
GIT_STATUS_SHOW_WORKDIR_ONLY = 2,
|
75
|
+
GIT_STATUS_SHOW_INDEX_THEN_WORKDIR = 3,
|
76
|
+
} git_status_show_t;
|
77
|
+
|
78
|
+
/**
|
79
|
+
* Flags to control status callbacks
|
80
|
+
*
|
81
|
+
* - GIT_STATUS_OPT_INCLUDE_UNTRACKED says that callbacks should
|
82
|
+
* be made on untracked files. These will only be made if the
|
83
|
+
* workdir files are included in the status "show" option.
|
84
|
+
* - GIT_STATUS_OPT_INCLUDE_IGNORED says that ignored files should
|
85
|
+
* get callbacks. Again, these callbacks will only be made if
|
86
|
+
* the workdir files are included in the status "show" option.
|
87
|
+
* Right now, there is no option to include all files in
|
88
|
+
* directories that are ignored completely.
|
89
|
+
* - GIT_STATUS_OPT_INCLUDE_UNMODIFIED indicates that callback
|
90
|
+
* should be made even on unmodified files.
|
91
|
+
* - GIT_STATUS_OPT_EXCLUDE_SUBMODULES indicates that directories
|
92
|
+
* which appear to be submodules should just be skipped over.
|
93
|
+
* - GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS indicates that the
|
94
|
+
* contents of untracked directories should be included in the
|
95
|
+
* status. Normally if an entire directory is new, then just
|
96
|
+
* the top-level directory will be included (with a trailing
|
97
|
+
* slash on the entry name). Given this flag, the directory
|
98
|
+
* itself will not be included, but all the files in it will.
|
99
|
+
*/
|
100
|
+
|
101
|
+
enum {
|
102
|
+
GIT_STATUS_OPT_INCLUDE_UNTRACKED = (1 << 0),
|
103
|
+
GIT_STATUS_OPT_INCLUDE_IGNORED = (1 << 1),
|
104
|
+
GIT_STATUS_OPT_INCLUDE_UNMODIFIED = (1 << 2),
|
105
|
+
GIT_STATUS_OPT_EXCLUDE_SUBMODULES = (1 << 3),
|
106
|
+
GIT_STATUS_OPT_RECURSE_UNTRACKED_DIRS = (1 << 4),
|
107
|
+
};
|
108
|
+
|
109
|
+
/**
|
110
|
+
* Options to control how callbacks will be made by
|
111
|
+
* `git_status_foreach_ext()`.
|
112
|
+
*/
|
113
|
+
typedef struct {
|
114
|
+
git_status_show_t show;
|
115
|
+
unsigned int flags;
|
116
|
+
git_strarray pathspec;
|
117
|
+
} git_status_options;
|
118
|
+
|
119
|
+
/**
|
120
|
+
* Gather file status information and run callbacks as requested.
|
46
121
|
*/
|
47
|
-
GIT_EXTERN(int)
|
122
|
+
GIT_EXTERN(int) git_status_foreach_ext(
|
123
|
+
git_repository *repo,
|
124
|
+
const git_status_options *opts,
|
125
|
+
int (*callback)(const char *, unsigned int, void *),
|
126
|
+
void *payload);
|
48
127
|
|
49
128
|
/**
|
50
129
|
* Get file status for a single file
|
@@ -54,9 +133,31 @@ GIT_EXTERN(int) git_status_foreach(git_repository *repo, int (*callback)(const c
|
|
54
133
|
* @param path the file to retrieve status for, rooted at the repo's workdir
|
55
134
|
* @return GIT_EINVALIDPATH when `path` points at a folder, GIT_ENOTFOUND when
|
56
135
|
* the file doesn't exist in any of HEAD, the index or the worktree,
|
57
|
-
*
|
136
|
+
* 0 otherwise
|
137
|
+
*/
|
138
|
+
GIT_EXTERN(int) git_status_file(
|
139
|
+
unsigned int *status_flags,
|
140
|
+
git_repository *repo,
|
141
|
+
const char *path);
|
142
|
+
|
143
|
+
/**
|
144
|
+
* Test if the ignore rules apply to a given file.
|
145
|
+
*
|
146
|
+
* This function simply checks the ignore rules to see if they would apply
|
147
|
+
* to the given file. Unlike git_status_file(), this indicates if the file
|
148
|
+
* would be ignored regardless of whether the file is already in the index
|
149
|
+
* or in the repository.
|
150
|
+
*
|
151
|
+
* @param ignored boolean returning 0 if the file is not ignored, 1 if it is
|
152
|
+
* @param repo a repository object
|
153
|
+
* @param path the file to check ignores for, rooted at the repo's workdir.
|
154
|
+
* @return 0 if ignore rules could be processed for the file (regardless
|
155
|
+
* of whether it exists or not), or an error < 0 if they could not.
|
58
156
|
*/
|
59
|
-
GIT_EXTERN(int)
|
157
|
+
GIT_EXTERN(int) git_status_should_ignore(
|
158
|
+
int *ignored,
|
159
|
+
git_repository *repo,
|
160
|
+
const char *path);
|
60
161
|
|
61
162
|
/** @} */
|
62
163
|
GIT_END_DECL
|
@@ -0,0 +1,103 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) 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_submodule_h__
|
8
|
+
#define INCLUDE_git_submodule_h__
|
9
|
+
|
10
|
+
#include "common.h"
|
11
|
+
#include "types.h"
|
12
|
+
#include "oid.h"
|
13
|
+
|
14
|
+
/**
|
15
|
+
* @file git2/submodule.h
|
16
|
+
* @brief Git submodule management utilities
|
17
|
+
* @defgroup git_submodule Git submodule management routines
|
18
|
+
* @ingroup Git
|
19
|
+
* @{
|
20
|
+
*/
|
21
|
+
GIT_BEGIN_DECL
|
22
|
+
|
23
|
+
typedef enum {
|
24
|
+
GIT_SUBMODULE_UPDATE_CHECKOUT = 0,
|
25
|
+
GIT_SUBMODULE_UPDATE_REBASE = 1,
|
26
|
+
GIT_SUBMODULE_UPDATE_MERGE = 2
|
27
|
+
} git_submodule_update_t;
|
28
|
+
|
29
|
+
typedef enum {
|
30
|
+
GIT_SUBMODULE_IGNORE_ALL = 0, /* never dirty */
|
31
|
+
GIT_SUBMODULE_IGNORE_DIRTY = 1, /* only dirty if HEAD moved */
|
32
|
+
GIT_SUBMODULE_IGNORE_UNTRACKED = 2, /* dirty if tracked files change */
|
33
|
+
GIT_SUBMODULE_IGNORE_NONE = 3 /* any change or untracked == dirty */
|
34
|
+
} git_submodule_ignore_t;
|
35
|
+
|
36
|
+
/**
|
37
|
+
* Description of submodule
|
38
|
+
*
|
39
|
+
* This record describes a submodule found in a repository. There
|
40
|
+
* should be an entry for every submodule found in the HEAD and for
|
41
|
+
* every submodule described in .gitmodules. The fields are as follows:
|
42
|
+
*
|
43
|
+
* - `name` is the name of the submodule from .gitmodules.
|
44
|
+
* - `path` is the path to the submodule from the repo working directory.
|
45
|
+
* It is almost always the same as `name`.
|
46
|
+
* - `url` is the url for the submodule.
|
47
|
+
* - `oid` is the HEAD SHA1 for the submodule.
|
48
|
+
* - `update` is a value from above - see gitmodules(5) update.
|
49
|
+
* - `ignore` is a value from above - see gitmodules(5) ignore.
|
50
|
+
* - `fetch_recurse` is 0 or 1 - see gitmodules(5) fetchRecurseSubmodules.
|
51
|
+
* - `refcount` is for internal use.
|
52
|
+
*
|
53
|
+
* If the submodule has been added to .gitmodules but not yet git added,
|
54
|
+
* then the `oid` will be zero. If the submodule has been deleted, but
|
55
|
+
* the delete has not been committed yet, then the `oid` will be set, but
|
56
|
+
* the `url` will be NULL.
|
57
|
+
*/
|
58
|
+
typedef struct {
|
59
|
+
char *name;
|
60
|
+
char *path;
|
61
|
+
char *url;
|
62
|
+
git_oid oid; /* sha1 of submodule HEAD ref or zero if not committed */
|
63
|
+
git_submodule_update_t update;
|
64
|
+
git_submodule_ignore_t ignore;
|
65
|
+
int fetch_recurse;
|
66
|
+
int refcount;
|
67
|
+
} git_submodule;
|
68
|
+
|
69
|
+
/**
|
70
|
+
* Iterate over all submodules of a repository.
|
71
|
+
*
|
72
|
+
* @param repo The repository
|
73
|
+
* @param callback Function to be called with the name of each submodule.
|
74
|
+
* Return a non-zero value to terminate the iteration.
|
75
|
+
* @param payload Extra data to pass to callback
|
76
|
+
* @return 0 on success, -1 on error, or non-zero return value of callback
|
77
|
+
*/
|
78
|
+
GIT_EXTERN(int) git_submodule_foreach(
|
79
|
+
git_repository *repo,
|
80
|
+
int (*callback)(const char *name, void *payload),
|
81
|
+
void *payload);
|
82
|
+
|
83
|
+
/**
|
84
|
+
* Lookup submodule information by name or path.
|
85
|
+
*
|
86
|
+
* Given either the submodule name or path (they are usually the same),
|
87
|
+
* this returns a structure describing the submodule. If the submodule
|
88
|
+
* does not exist, this will return GIT_ENOTFOUND and set the submodule
|
89
|
+
* pointer to NULL.
|
90
|
+
*
|
91
|
+
* @param submodule Pointer to submodule description object pointer..
|
92
|
+
* @param repo The repository.
|
93
|
+
* @param name The name of the submodule. Trailing slashes will be ignored.
|
94
|
+
* @return 0 on success, GIT_ENOTFOUND if submodule does not exist, -1 on error
|
95
|
+
*/
|
96
|
+
GIT_EXTERN(int) git_submodule_lookup(
|
97
|
+
git_submodule **submodule,
|
98
|
+
git_repository *repo,
|
99
|
+
const char *name);
|
100
|
+
|
101
|
+
/** @} */
|
102
|
+
GIT_END_DECL
|
103
|
+
#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.
|
@@ -27,7 +27,7 @@ GIT_BEGIN_DECL
|
|
27
27
|
* @param tag pointer to the looked up tag
|
28
28
|
* @param repo the repo to use when locating the tag.
|
29
29
|
* @param id identity of the tag to locate.
|
30
|
-
* @return
|
30
|
+
* @return 0 or an error code
|
31
31
|
*/
|
32
32
|
GIT_INLINE(int) git_tag_lookup(git_tag **tag, git_repository *repo, const git_oid *id)
|
33
33
|
{
|
@@ -44,7 +44,7 @@ GIT_INLINE(int) git_tag_lookup(git_tag **tag, git_repository *repo, const git_oi
|
|
44
44
|
* @param repo the repo to use when locating the tag.
|
45
45
|
* @param id identity of the tag 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_tag_lookup_prefix(git_tag **tag, git_repository *repo, const git_oid *id, unsigned int len)
|
50
50
|
{
|
@@ -85,7 +85,7 @@ GIT_EXTERN(const git_oid *) git_tag_id(git_tag *tag);
|
|
85
85
|
*
|
86
86
|
* @param target pointer where to store the target
|
87
87
|
* @param tag a previously loaded tag.
|
88
|
-
* @return
|
88
|
+
* @return 0 or an error code
|
89
89
|
*/
|
90
90
|
GIT_EXTERN(int) git_tag_target(git_object **target, git_tag *tag);
|
91
91
|
|
@@ -137,6 +137,9 @@ GIT_EXTERN(const char *) git_tag_message(git_tag *tag);
|
|
137
137
|
* this tag object. If `force` is true and a reference
|
138
138
|
* already exists with the given name, it'll be replaced.
|
139
139
|
*
|
140
|
+
* The message will be cleaned up from excess whitespace
|
141
|
+
* it will be made sure that the last line ends with a '\n'.
|
142
|
+
*
|
140
143
|
* @param oid Pointer where to store the OID of the
|
141
144
|
* newly created tag. If the tag already exists, this parameter
|
142
145
|
* will be the oid of the existing tag, and the function will
|
@@ -158,7 +161,7 @@ GIT_EXTERN(const char *) git_tag_message(git_tag *tag);
|
|
158
161
|
*
|
159
162
|
* @param force Overwrite existing references
|
160
163
|
*
|
161
|
-
* @return
|
164
|
+
* @return 0 or an error code
|
162
165
|
* A tag object is written to the ODB, and a proper reference
|
163
166
|
* is written in the /refs/tags folder, pointing to it
|
164
167
|
*/
|
@@ -178,7 +181,7 @@ GIT_EXTERN(int) git_tag_create(
|
|
178
181
|
* @param repo Repository where to store the tag
|
179
182
|
* @param buffer Raw tag data
|
180
183
|
* @param force Overwrite existing tags
|
181
|
-
* @return 0 on
|
184
|
+
* @return 0 on success; error code otherwise
|
182
185
|
*/
|
183
186
|
GIT_EXTERN(int) git_tag_create_frombuffer(
|
184
187
|
git_oid *oid,
|
@@ -209,7 +212,7 @@ GIT_EXTERN(int) git_tag_create_frombuffer(
|
|
209
212
|
*
|
210
213
|
* @param force Overwrite existing references
|
211
214
|
*
|
212
|
-
* @return
|
215
|
+
* @return 0 or an error code
|
213
216
|
* A proper reference is written in the /refs/tags folder,
|
214
217
|
* pointing to the provided target object
|
215
218
|
*/
|
@@ -228,7 +231,7 @@ GIT_EXTERN(int) git_tag_create_lightweight(
|
|
228
231
|
* @param tag_name Name of the tag to be deleted;
|
229
232
|
* this name is validated for consistency.
|
230
233
|
*
|
231
|
-
* @return
|
234
|
+
* @return 0 or an error code
|
232
235
|
*/
|
233
236
|
GIT_EXTERN(int) git_tag_delete(
|
234
237
|
git_repository *repo,
|
@@ -245,7 +248,7 @@ GIT_EXTERN(int) git_tag_delete(
|
|
245
248
|
* @param tag_names Pointer to a git_strarray structure where
|
246
249
|
* the tag names will be stored
|
247
250
|
* @param repo Repository where to find the tags
|
248
|
-
* @return
|
251
|
+
* @return 0 or an error code
|
249
252
|
*/
|
250
253
|
GIT_EXTERN(int) git_tag_list(
|
251
254
|
git_strarray *tag_names,
|
@@ -267,13 +270,28 @@ GIT_EXTERN(int) git_tag_list(
|
|
267
270
|
* the tag names will be stored
|
268
271
|
* @param pattern Standard fnmatch pattern
|
269
272
|
* @param repo Repository where to find the tags
|
270
|
-
* @return
|
273
|
+
* @return 0 or an error code
|
271
274
|
*/
|
272
275
|
GIT_EXTERN(int) git_tag_list_match(
|
273
276
|
git_strarray *tag_names,
|
274
277
|
const char *pattern,
|
275
278
|
git_repository *repo);
|
276
279
|
|
280
|
+
/**
|
281
|
+
* Recursively peel a tag until a non tag git_object
|
282
|
+
* is met
|
283
|
+
*
|
284
|
+
* The retrieved `tag_target` object is owned by the repository
|
285
|
+
* and should be closed with the `git_object_free` method.
|
286
|
+
*
|
287
|
+
* @param tag_target Pointer to the peeled git_object
|
288
|
+
* @param tag The tag to be processed
|
289
|
+
* @return 0 or an error code
|
290
|
+
*/
|
291
|
+
GIT_EXTERN(int) git_tag_peel(
|
292
|
+
git_object **tag_target,
|
293
|
+
git_tag *tag);
|
294
|
+
|
277
295
|
/** @} */
|
278
296
|
GIT_END_DECL
|
279
297
|
#endif
|