rugged 0.17.0.b7 → 0.18.0.b1
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +1 -1
- data/README.md +88 -32
- data/ext/rugged/extconf.rb +4 -2
- data/ext/rugged/rugged.c +72 -10
- data/ext/rugged/rugged.h +14 -10
- data/ext/rugged/rugged_blob.c +8 -10
- data/ext/rugged/rugged_branch.c +11 -14
- data/ext/rugged/rugged_commit.c +31 -24
- data/ext/rugged/rugged_config.c +2 -2
- data/ext/rugged/rugged_index.c +133 -198
- data/ext/rugged/rugged_note.c +372 -0
- data/ext/rugged/rugged_object.c +50 -22
- data/ext/rugged/rugged_reference.c +122 -130
- data/ext/rugged/rugged_remote.c +72 -29
- data/ext/rugged/rugged_repo.c +402 -20
- data/ext/rugged/rugged_revwalk.c +7 -3
- data/ext/rugged/rugged_settings.c +110 -0
- data/ext/rugged/rugged_signature.c +23 -7
- data/ext/rugged/rugged_tag.c +32 -16
- data/ext/rugged/rugged_tree.c +44 -15
- data/lib/rugged.rb +1 -0
- data/lib/rugged/index.rb +8 -0
- data/lib/rugged/remote.rb +13 -0
- data/lib/rugged/repository.rb +3 -3
- data/lib/rugged/version.rb +1 -1
- data/test/blob_test.rb +13 -15
- data/test/branch_test.rb +32 -67
- data/test/commit_test.rb +50 -12
- data/test/config_test.rb +12 -11
- data/test/coverage/HEAD.json +1 -1
- data/test/coverage/cover.rb +40 -21
- data/test/errors_test.rb +34 -0
- data/test/fixtures/alternate/objects/14/6ae76773c91e3b1d00cf7a338ec55ae58297e2 +0 -0
- data/test/fixtures/alternate/objects/14/9c32d47e99d0a3572ff1e70a2e0051bbf347a9 +0 -0
- data/test/fixtures/alternate/objects/14/fb3108588f9421bf764041e5e3ac305eb6277f +0 -0
- data/test/fixtures/testrepo.git/logs/refs/notes/commits +1 -0
- data/test/fixtures/testrepo.git/objects/44/1034f860c1d5d90e4188d11ae0d325176869a8 +1 -0
- data/test/fixtures/testrepo.git/objects/60/d415052a33de2150bf68757f6461df4f563ae4 +0 -0
- data/test/fixtures/testrepo.git/objects/68/8a8f4ef7496901d15322972f96e212a9e466cc +1 -0
- data/test/fixtures/testrepo.git/objects/94/eca2de348d5f672faf56b0decafa5937e3235e +0 -0
- data/test/fixtures/testrepo.git/objects/9b/7384fe1676186192842f5d3e129457b62db9e3 +0 -0
- data/test/fixtures/testrepo.git/objects/b7/4713326bc972cc15751ed504dca6f6f3b91f7a +3 -0
- data/test/fixtures/testrepo.git/refs/notes/commits +1 -0
- data/test/index_test.rb +65 -69
- data/test/lib_test.rb +76 -11
- data/test/note_test.rb +158 -0
- data/test/object_test.rb +8 -11
- data/test/reference_test.rb +77 -85
- data/test/remote_test.rb +86 -8
- data/test/repo_pack_test.rb +9 -7
- data/test/repo_reset_test.rb +80 -0
- data/test/repo_test.rb +176 -53
- data/test/tag_test.rb +44 -7
- data/test/test_helper.rb +63 -35
- data/test/tree_test.rb +34 -13
- data/test/walker_test.rb +14 -14
- data/vendor/libgit2/Makefile.embed +1 -1
- data/vendor/libgit2/deps/http-parser/http_parser.c +974 -578
- data/vendor/libgit2/deps/http-parser/http_parser.h +106 -70
- data/vendor/libgit2/deps/regex/regcomp.c +7 -6
- data/vendor/libgit2/deps/regex/regex_internal.c +1 -1
- data/vendor/libgit2/deps/regex/regex_internal.h +12 -3
- data/vendor/libgit2/deps/regex/regexec.c +5 -5
- data/vendor/libgit2/include/git2.h +5 -1
- data/vendor/libgit2/include/git2/attr.h +4 -2
- data/vendor/libgit2/include/git2/blob.h +39 -12
- data/vendor/libgit2/include/git2/branch.h +123 -35
- data/vendor/libgit2/include/git2/checkout.h +206 -48
- data/vendor/libgit2/include/git2/clone.h +72 -27
- data/vendor/libgit2/include/git2/commit.h +20 -17
- data/vendor/libgit2/include/git2/common.h +67 -1
- data/vendor/libgit2/include/git2/config.h +81 -60
- data/vendor/libgit2/include/git2/cred_helpers.h +53 -0
- data/vendor/libgit2/include/git2/diff.h +459 -150
- data/vendor/libgit2/include/git2/errors.h +9 -1
- data/vendor/libgit2/include/git2/graph.h +41 -0
- data/vendor/libgit2/include/git2/ignore.h +7 -6
- data/vendor/libgit2/include/git2/index.h +323 -97
- data/vendor/libgit2/include/git2/indexer.h +27 -59
- data/vendor/libgit2/include/git2/inttypes.h +4 -0
- data/vendor/libgit2/include/git2/merge.h +13 -3
- data/vendor/libgit2/include/git2/message.h +14 -8
- data/vendor/libgit2/include/git2/net.h +9 -7
- data/vendor/libgit2/include/git2/notes.h +88 -29
- data/vendor/libgit2/include/git2/object.h +16 -6
- data/vendor/libgit2/include/git2/odb.h +80 -17
- data/vendor/libgit2/include/git2/odb_backend.h +47 -11
- data/vendor/libgit2/include/git2/oid.h +26 -17
- data/vendor/libgit2/include/git2/pack.h +62 -8
- data/vendor/libgit2/include/git2/push.h +131 -0
- data/vendor/libgit2/include/git2/refdb.h +103 -0
- data/vendor/libgit2/include/git2/refdb_backend.h +109 -0
- data/vendor/libgit2/include/git2/reflog.h +30 -21
- data/vendor/libgit2/include/git2/refs.h +215 -193
- data/vendor/libgit2/include/git2/refspec.h +22 -2
- data/vendor/libgit2/include/git2/remote.h +158 -37
- data/vendor/libgit2/include/git2/repository.h +150 -31
- data/vendor/libgit2/include/git2/reset.h +43 -9
- data/vendor/libgit2/include/git2/revparse.h +48 -4
- data/vendor/libgit2/include/git2/revwalk.h +25 -10
- data/vendor/libgit2/include/git2/signature.h +20 -12
- data/vendor/libgit2/include/git2/stash.h +121 -0
- data/vendor/libgit2/include/git2/status.h +122 -53
- data/vendor/libgit2/include/git2/strarray.h +17 -11
- data/vendor/libgit2/include/git2/submodule.h +42 -7
- data/vendor/libgit2/include/git2/tag.h +72 -59
- data/vendor/libgit2/include/git2/threads.h +4 -2
- data/vendor/libgit2/include/git2/trace.h +68 -0
- data/vendor/libgit2/include/git2/transport.h +328 -0
- data/vendor/libgit2/include/git2/tree.h +149 -120
- data/vendor/libgit2/include/git2/types.h +13 -12
- data/vendor/libgit2/include/git2/version.h +3 -3
- data/vendor/libgit2/src/amiga/map.c +2 -2
- data/vendor/libgit2/src/attr.c +58 -48
- data/vendor/libgit2/src/attr.h +4 -18
- data/vendor/libgit2/src/attr_file.c +30 -6
- data/vendor/libgit2/src/attr_file.h +6 -8
- data/vendor/libgit2/src/attrcache.h +24 -0
- data/vendor/libgit2/src/blob.c +30 -7
- data/vendor/libgit2/src/blob.h +1 -1
- data/vendor/libgit2/src/branch.c +361 -68
- data/vendor/libgit2/src/branch.h +17 -0
- data/vendor/libgit2/src/bswap.h +1 -1
- data/vendor/libgit2/src/buf_text.c +291 -0
- data/vendor/libgit2/src/buf_text.h +122 -0
- data/vendor/libgit2/src/buffer.c +27 -101
- data/vendor/libgit2/src/buffer.h +54 -39
- data/vendor/libgit2/src/cache.c +15 -6
- data/vendor/libgit2/src/cache.h +1 -1
- data/vendor/libgit2/src/cc-compat.h +3 -1
- data/vendor/libgit2/src/checkout.c +1165 -222
- data/vendor/libgit2/src/checkout.h +24 -0
- data/vendor/libgit2/src/clone.c +171 -86
- data/vendor/libgit2/src/commit.c +44 -45
- data/vendor/libgit2/src/commit.h +3 -3
- data/vendor/libgit2/src/commit_list.c +194 -0
- data/vendor/libgit2/src/commit_list.h +49 -0
- data/vendor/libgit2/src/common.h +44 -10
- data/vendor/libgit2/src/compress.c +1 -1
- data/vendor/libgit2/src/compress.h +1 -1
- data/vendor/libgit2/src/config.c +211 -124
- data/vendor/libgit2/src/config.h +23 -4
- data/vendor/libgit2/src/config_cache.c +2 -2
- data/vendor/libgit2/src/config_file.c +129 -53
- data/vendor/libgit2/src/config_file.h +10 -8
- data/vendor/libgit2/src/crlf.c +66 -67
- data/vendor/libgit2/src/date.c +12 -12
- data/vendor/libgit2/src/delta-apply.c +14 -1
- data/vendor/libgit2/src/delta-apply.h +18 -1
- data/vendor/libgit2/src/delta.c +40 -107
- data/vendor/libgit2/src/delta.h +19 -17
- data/vendor/libgit2/src/diff.c +347 -496
- data/vendor/libgit2/src/diff.h +27 -1
- data/vendor/libgit2/src/diff_output.c +564 -249
- data/vendor/libgit2/src/diff_output.h +15 -8
- data/vendor/libgit2/src/diff_tform.c +687 -0
- data/vendor/libgit2/src/errors.c +27 -36
- data/vendor/libgit2/src/fetch.c +13 -351
- data/vendor/libgit2/src/fetch.h +13 -3
- data/vendor/libgit2/src/fetchhead.c +295 -0
- data/vendor/libgit2/src/fetchhead.h +34 -0
- data/vendor/libgit2/src/filebuf.c +42 -15
- data/vendor/libgit2/src/filebuf.h +4 -2
- data/vendor/libgit2/src/fileops.c +466 -113
- data/vendor/libgit2/src/fileops.h +154 -28
- data/vendor/libgit2/src/filter.c +3 -75
- data/vendor/libgit2/src/filter.h +1 -29
- data/vendor/libgit2/src/fnmatch.c +1 -1
- data/vendor/libgit2/src/fnmatch.h +1 -1
- data/vendor/libgit2/src/global.c +54 -10
- data/vendor/libgit2/src/global.h +10 -1
- data/vendor/libgit2/src/graph.c +178 -0
- data/vendor/libgit2/src/hash.c +25 -52
- data/vendor/libgit2/src/hash.h +21 -9
- data/vendor/libgit2/src/{sha1/sha1.c → hash/hash_generic.c} +20 -12
- data/vendor/libgit2/src/hash/hash_generic.h +24 -0
- data/vendor/libgit2/src/hash/hash_openssl.h +45 -0
- data/vendor/libgit2/src/hash/hash_win32.c +291 -0
- data/vendor/libgit2/src/hash/hash_win32.h +140 -0
- data/vendor/libgit2/src/hashsig.c +368 -0
- data/vendor/libgit2/src/hashsig.h +72 -0
- data/vendor/libgit2/src/ignore.c +22 -15
- data/vendor/libgit2/src/ignore.h +6 -1
- data/vendor/libgit2/src/index.c +770 -171
- data/vendor/libgit2/src/index.h +13 -5
- data/vendor/libgit2/src/indexer.c +286 -431
- data/vendor/libgit2/src/iterator.c +854 -466
- data/vendor/libgit2/src/iterator.h +134 -109
- data/vendor/libgit2/src/map.h +1 -1
- data/vendor/libgit2/src/merge.c +296 -0
- data/vendor/libgit2/src/merge.h +22 -0
- data/vendor/libgit2/src/message.c +1 -1
- data/vendor/libgit2/src/message.h +1 -1
- data/vendor/libgit2/src/mwindow.c +35 -30
- data/vendor/libgit2/src/mwindow.h +2 -2
- data/vendor/libgit2/src/netops.c +162 -98
- data/vendor/libgit2/src/netops.h +50 -15
- data/vendor/libgit2/src/notes.c +109 -58
- data/vendor/libgit2/src/notes.h +2 -1
- data/vendor/libgit2/src/object.c +46 -57
- data/vendor/libgit2/src/object.h +1 -8
- data/vendor/libgit2/src/odb.c +151 -40
- data/vendor/libgit2/src/odb.h +5 -1
- data/vendor/libgit2/src/odb_loose.c +4 -5
- data/vendor/libgit2/src/odb_pack.c +122 -80
- data/vendor/libgit2/src/offmap.h +65 -0
- data/vendor/libgit2/src/oid.c +12 -4
- data/vendor/libgit2/src/oidmap.h +1 -1
- data/vendor/libgit2/src/pack-objects.c +88 -61
- data/vendor/libgit2/src/pack-objects.h +8 -8
- data/vendor/libgit2/src/pack.c +293 -28
- data/vendor/libgit2/src/pack.h +49 -4
- data/vendor/libgit2/src/path.c +103 -14
- data/vendor/libgit2/src/path.h +23 -7
- data/vendor/libgit2/src/pathspec.c +168 -0
- data/vendor/libgit2/src/pathspec.h +40 -0
- data/vendor/libgit2/src/pool.c +29 -4
- data/vendor/libgit2/src/pool.h +8 -1
- data/vendor/libgit2/src/posix.c +26 -27
- data/vendor/libgit2/src/posix.h +2 -3
- data/vendor/libgit2/src/pqueue.c +23 -1
- data/vendor/libgit2/src/pqueue.h +23 -1
- data/vendor/libgit2/src/push.c +653 -0
- data/vendor/libgit2/src/push.h +51 -0
- data/vendor/libgit2/src/refdb.c +185 -0
- data/vendor/libgit2/src/refdb.h +46 -0
- data/vendor/libgit2/src/refdb_fs.c +1024 -0
- data/vendor/libgit2/src/refdb_fs.h +15 -0
- data/vendor/libgit2/src/reflog.c +77 -45
- data/vendor/libgit2/src/reflog.h +1 -3
- data/vendor/libgit2/src/refs.c +366 -1326
- data/vendor/libgit2/src/refs.h +22 -13
- data/vendor/libgit2/src/refspec.c +46 -7
- data/vendor/libgit2/src/refspec.h +11 -1
- data/vendor/libgit2/src/remote.c +758 -120
- data/vendor/libgit2/src/remote.h +10 -5
- data/vendor/libgit2/src/repo_template.h +6 -6
- data/vendor/libgit2/src/repository.c +315 -96
- data/vendor/libgit2/src/repository.h +5 -3
- data/vendor/libgit2/src/reset.c +99 -81
- data/vendor/libgit2/src/revparse.c +157 -84
- data/vendor/libgit2/src/revwalk.c +68 -470
- data/vendor/libgit2/src/revwalk.h +44 -0
- data/vendor/libgit2/src/sha1_lookup.c +1 -1
- data/vendor/libgit2/src/sha1_lookup.h +1 -1
- data/vendor/libgit2/src/signature.c +68 -200
- data/vendor/libgit2/src/signature.h +1 -1
- data/vendor/libgit2/src/stash.c +663 -0
- data/vendor/libgit2/src/status.c +101 -79
- data/vendor/libgit2/src/strmap.h +1 -1
- data/vendor/libgit2/src/submodule.c +67 -51
- data/vendor/libgit2/src/submodule.h +1 -1
- data/vendor/libgit2/src/tag.c +35 -29
- data/vendor/libgit2/src/tag.h +1 -1
- data/vendor/libgit2/src/thread-utils.c +1 -1
- data/vendor/libgit2/src/thread-utils.h +2 -2
- data/vendor/libgit2/src/trace.c +39 -0
- data/vendor/libgit2/src/trace.h +56 -0
- data/vendor/libgit2/src/transport.c +81 -34
- data/vendor/libgit2/src/transports/cred.c +60 -0
- data/vendor/libgit2/src/transports/cred_helpers.c +49 -0
- data/vendor/libgit2/src/transports/git.c +234 -127
- data/vendor/libgit2/src/transports/http.c +761 -433
- data/vendor/libgit2/src/transports/local.c +460 -64
- data/vendor/libgit2/src/transports/smart.c +345 -0
- data/vendor/libgit2/src/transports/smart.h +179 -0
- data/vendor/libgit2/src/{pkt.c → transports/smart_pkt.c} +131 -12
- data/vendor/libgit2/src/transports/smart_protocol.c +856 -0
- data/vendor/libgit2/src/transports/winhttp.c +1136 -0
- data/vendor/libgit2/src/tree-cache.c +2 -2
- data/vendor/libgit2/src/tree-cache.h +1 -1
- data/vendor/libgit2/src/tree.c +239 -166
- data/vendor/libgit2/src/tree.h +11 -2
- data/vendor/libgit2/src/tsort.c +39 -23
- data/vendor/libgit2/src/unix/map.c +1 -1
- data/vendor/libgit2/src/unix/posix.h +12 -2
- data/vendor/libgit2/src/unix/realpath.c +30 -0
- data/vendor/libgit2/src/util.c +250 -13
- data/vendor/libgit2/src/util.h +71 -14
- data/vendor/libgit2/src/vector.c +123 -60
- data/vendor/libgit2/src/vector.h +24 -22
- data/vendor/libgit2/src/win32/dir.c +1 -1
- data/vendor/libgit2/src/win32/dir.h +1 -1
- data/vendor/libgit2/src/win32/error.c +77 -0
- data/vendor/libgit2/src/win32/error.h +13 -0
- data/vendor/libgit2/src/win32/findfile.c +143 -54
- data/vendor/libgit2/src/win32/findfile.h +10 -6
- data/vendor/libgit2/src/win32/map.c +1 -1
- data/vendor/libgit2/src/win32/mingw-compat.h +1 -1
- data/vendor/libgit2/src/win32/msvc-compat.h +10 -1
- data/vendor/libgit2/src/win32/posix.h +10 -1
- data/vendor/libgit2/src/win32/posix_w32.c +132 -63
- data/vendor/libgit2/src/win32/precompiled.c +1 -1
- data/vendor/libgit2/src/win32/pthread.c +1 -1
- data/vendor/libgit2/src/win32/pthread.h +1 -1
- data/vendor/libgit2/src/win32/utf-conv.c +5 -5
- data/vendor/libgit2/src/win32/utf-conv.h +3 -3
- data/vendor/libgit2/src/win32/version.h +20 -0
- metadata +308 -252
- data/test/fixtures/testrepo.git/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904 +0 -0
- data/test/fixtures/testrepo.git/objects/7f/043268ea43ce18e3540acaabf9e090c91965b0 +0 -0
- data/test/fixtures/testrepo.git/objects/a3/e05719b428a2d0ed7a55c4ce53dcc5768c6d5e +0 -0
- data/test/index_test.rb~ +0 -218
- data/vendor/libgit2/src/pkt.h +0 -91
- data/vendor/libgit2/src/ppc/sha1.c +0 -70
- data/vendor/libgit2/src/ppc/sha1.h +0 -26
- data/vendor/libgit2/src/protocol.c +0 -110
- data/vendor/libgit2/src/protocol.h +0 -21
- data/vendor/libgit2/src/sha1.h +0 -33
- data/vendor/libgit2/src/transport.h +0 -148
@@ -0,0 +1,20 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (C) the libgit2 contributors. All rights reserved.
|
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_win32_version_h__
|
8
|
+
#define INCLUDE_win32_version_h__
|
9
|
+
|
10
|
+
#include <windows.h>
|
11
|
+
|
12
|
+
GIT_INLINE(int) git_has_win32_version(int major, int minor)
|
13
|
+
{
|
14
|
+
WORD wVersion = LOWORD(GetVersion());
|
15
|
+
|
16
|
+
return LOBYTE(wVersion) > major ||
|
17
|
+
(LOBYTE(wVersion) == major && HIBYTE(wVersion) >= minor);
|
18
|
+
}
|
19
|
+
|
20
|
+
#endif
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rugged
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.18.0.b1
|
5
5
|
prerelease: 7
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2013-04-18 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rake-compiler
|
@@ -59,327 +59,383 @@ files:
|
|
59
59
|
- README.md
|
60
60
|
- Rakefile
|
61
61
|
- LICENSE
|
62
|
-
- lib/rugged
|
62
|
+
- lib/rugged.rb
|
63
63
|
- lib/rugged/commit.rb
|
64
|
+
- lib/rugged/repository.rb
|
65
|
+
- lib/rugged/remote.rb
|
64
66
|
- lib/rugged/index.rb
|
65
|
-
- lib/rugged/object.rb
|
66
67
|
- lib/rugged/reference.rb
|
67
|
-
- lib/rugged/repository.rb
|
68
|
-
- lib/rugged/tag.rb
|
69
|
-
- lib/rugged/tree.rb
|
70
68
|
- lib/rugged/version.rb
|
69
|
+
- lib/rugged/tree.rb
|
70
|
+
- lib/rugged/object.rb
|
71
|
+
- lib/rugged/branch.rb
|
71
72
|
- lib/rugged/walker.rb
|
72
|
-
- lib/rugged.rb
|
73
|
-
- test/
|
74
|
-
- test/
|
75
|
-
- test/
|
73
|
+
- lib/rugged/tag.rb
|
74
|
+
- test/repo_test.rb
|
75
|
+
- test/errors_test.rb
|
76
|
+
- test/remote_test.rb
|
77
|
+
- test/object_test.rb
|
76
78
|
- test/config_test.rb
|
77
|
-
- test/
|
78
|
-
- test/
|
79
|
-
- test/
|
79
|
+
- test/index_test.rb
|
80
|
+
- test/lib_test.rb
|
81
|
+
- test/branch_test.rb
|
80
82
|
- test/fixtures/testrepo.git/description
|
81
|
-
- test/fixtures/testrepo.git/
|
82
|
-
- test/fixtures/testrepo.git/index
|
83
|
-
- test/fixtures/testrepo.git/info/exclude
|
84
|
-
- test/fixtures/testrepo.git/logs/HEAD
|
83
|
+
- test/fixtures/testrepo.git/config
|
85
84
|
- test/fixtures/testrepo.git/logs/refs/heads/master
|
86
|
-
- test/fixtures/testrepo.git/
|
87
|
-
- test/fixtures/testrepo.git/
|
88
|
-
- test/fixtures/testrepo.git/
|
89
|
-
- test/fixtures/testrepo.git/objects/
|
90
|
-
- test/fixtures/testrepo.git/objects/
|
91
|
-
- test/fixtures/testrepo.git/objects/
|
92
|
-
- test/fixtures/testrepo.git/objects/45/b983be36b73c0788dc9cbcb76cbb80fc7bb057
|
93
|
-
- test/fixtures/testrepo.git/objects/4a/202b346bb0fb0db7eff3cffeb3c70babbd2045
|
94
|
-
- test/fixtures/testrepo.git/objects/4b/825dc642cb6eb9a060e54bf8d69288fbee4904
|
85
|
+
- test/fixtures/testrepo.git/logs/refs/notes/commits
|
86
|
+
- test/fixtures/testrepo.git/logs/HEAD
|
87
|
+
- test/fixtures/testrepo.git/index
|
88
|
+
- test/fixtures/testrepo.git/objects/60/d415052a33de2150bf68757f6461df4f563ae4
|
89
|
+
- test/fixtures/testrepo.git/objects/fd/093bff70906175335656e6ce6ae05783708765
|
90
|
+
- test/fixtures/testrepo.git/objects/9b/7384fe1676186192842f5d3e129457b62db9e3
|
95
91
|
- test/fixtures/testrepo.git/objects/5b/5b025afb0b4c913b4c338a42934a3863bf3644
|
96
92
|
- test/fixtures/testrepo.git/objects/61/9f9935957e010c419cb9d15621916ddfcc0b96
|
93
|
+
- test/fixtures/testrepo.git/objects/b7/4713326bc972cc15751ed504dca6f6f3b91f7a
|
94
|
+
- test/fixtures/testrepo.git/objects/18/1037049a54a1eb5fab404658a3a250b44335d7
|
95
|
+
- test/fixtures/testrepo.git/objects/18/10dff58d8a660512d4832e740f692884338ccd
|
96
|
+
- test/fixtures/testrepo.git/objects/94/eca2de348d5f672faf56b0decafa5937e3235e
|
97
97
|
- test/fixtures/testrepo.git/objects/75/057dd4114e74cca1d750d0aee1647c903cb60a
|
98
|
-
- test/fixtures/testrepo.git/objects/
|
99
|
-
- test/fixtures/testrepo.git/objects/81/4889a078c031f61ed08ab5fa863aea9314344d
|
100
|
-
- test/fixtures/testrepo.git/objects/84/96071c1b46c854b31185ea97743be6a8774479
|
101
|
-
- test/fixtures/testrepo.git/objects/9f/d738e8f7967c078dceed8190330fc8648ee56a
|
102
|
-
- test/fixtures/testrepo.git/objects/a3/e05719b428a2d0ed7a55c4ce53dcc5768c6d5e
|
103
|
-
- test/fixtures/testrepo.git/objects/a4/a7dce85cf63874e984719f4fdd239f5145052f
|
98
|
+
- test/fixtures/testrepo.git/objects/4a/202b346bb0fb0db7eff3cffeb3c70babbd2045
|
104
99
|
- test/fixtures/testrepo.git/objects/a7/1586c1dfe8a71c6cbf6c129f404c5642ff31bd
|
105
|
-
- test/fixtures/testrepo.git/objects/a8/233120f6ad708f843d861ce2b7228ec4e3dec6
|
106
100
|
- test/fixtures/testrepo.git/objects/be/3563ae3f795b2b4353bcce3a527ad0a4f7f644
|
107
|
-
- test/fixtures/testrepo.git/objects/
|
108
|
-
- test/fixtures/testrepo.git/objects/c4/dc1555e4d4fa0e0c9c3fc46734c7c35b3ce90b
|
101
|
+
- test/fixtures/testrepo.git/objects/0c/37a5391bbff43c37f0d0371823a5509eed5b1d
|
109
102
|
- test/fixtures/testrepo.git/objects/e6/9de29bb2d1d6434b8b29ae775ad8c2e48c5391
|
110
|
-
- test/fixtures/testrepo.git/objects/
|
111
|
-
- test/fixtures/testrepo.git/objects/
|
112
|
-
- test/fixtures/testrepo.git/objects/
|
103
|
+
- test/fixtures/testrepo.git/objects/c4/dc1555e4d4fa0e0c9c3fc46734c7c35b3ce90b
|
104
|
+
- test/fixtures/testrepo.git/objects/c4/7800c7266a2be04c571c04d5a6614691ea99bd
|
105
|
+
- test/fixtures/testrepo.git/objects/2d/2eff63372b08adf0a9eb84109ccf7d19e2f3a2
|
106
|
+
- test/fixtures/testrepo.git/objects/44/1034f860c1d5d90e4188d11ae0d325176869a8
|
113
107
|
- test/fixtures/testrepo.git/objects/pack/pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.idx
|
114
108
|
- test/fixtures/testrepo.git/objects/pack/pack-d7c6adf9f61318f041845b01440d09aa7a91e1b5.pack
|
115
|
-
- test/fixtures/testrepo.git/
|
116
|
-
- test/fixtures/testrepo.git/
|
109
|
+
- test/fixtures/testrepo.git/objects/84/96071c1b46c854b31185ea97743be6a8774479
|
110
|
+
- test/fixtures/testrepo.git/objects/36/060c58702ed4c2a40832c51758d5344201d89a
|
111
|
+
- test/fixtures/testrepo.git/objects/a4/a7dce85cf63874e984719f4fdd239f5145052f
|
112
|
+
- test/fixtures/testrepo.git/objects/a8/233120f6ad708f843d861ce2b7228ec4e3dec6
|
113
|
+
- test/fixtures/testrepo.git/objects/68/8a8f4ef7496901d15322972f96e212a9e466cc
|
114
|
+
- test/fixtures/testrepo.git/objects/f6/0079018b664e4e79329a7ef9559c8d9e0378d1
|
115
|
+
- test/fixtures/testrepo.git/objects/13/85f264afb75a56a5bec74243be9b367ba4ca08
|
116
|
+
- test/fixtures/testrepo.git/objects/81/4889a078c031f61ed08ab5fa863aea9314344d
|
117
|
+
- test/fixtures/testrepo.git/objects/45/b983be36b73c0788dc9cbcb76cbb80fc7bb057
|
118
|
+
- test/fixtures/testrepo.git/objects/fa/49b077972391ad58037050f2a75f74e3671e92
|
119
|
+
- test/fixtures/testrepo.git/objects/9f/d738e8f7967c078dceed8190330fc8648ee56a
|
120
|
+
- test/fixtures/testrepo.git/info/exclude
|
117
121
|
- test/fixtures/testrepo.git/refs/tags/v0.9
|
118
122
|
- test/fixtures/testrepo.git/refs/tags/v1.0
|
119
|
-
- test/
|
120
|
-
- test/
|
121
|
-
- test/
|
122
|
-
- test/
|
123
|
+
- test/fixtures/testrepo.git/refs/heads/master
|
124
|
+
- test/fixtures/testrepo.git/refs/notes/commits
|
125
|
+
- test/fixtures/testrepo.git/packed-refs
|
126
|
+
- test/fixtures/testrepo.git/HEAD
|
127
|
+
- test/fixtures/alternate/objects/14/fb3108588f9421bf764041e5e3ac305eb6277f
|
128
|
+
- test/fixtures/alternate/objects/14/6ae76773c91e3b1d00cf7a338ec55ae58297e2
|
129
|
+
- test/fixtures/alternate/objects/14/9c32d47e99d0a3572ff1e70a2e0051bbf347a9
|
130
|
+
- test/test_helper.rb
|
131
|
+
- test/walker_test.rb
|
123
132
|
- test/reference_test.rb
|
124
|
-
- test/
|
125
|
-
- test/
|
126
|
-
- test/
|
133
|
+
- test/commit_test.rb
|
134
|
+
- test/coverage/cover.rb
|
135
|
+
- test/coverage/HEAD.json
|
136
|
+
- test/note_test.rb
|
137
|
+
- test/repo_reset_test.rb
|
127
138
|
- test/tag_test.rb
|
128
|
-
- test/
|
139
|
+
- test/blob_test.rb
|
129
140
|
- test/tree_test.rb
|
130
|
-
- test/
|
131
|
-
- ext/rugged/rugged.c
|
132
|
-
- ext/rugged/rugged.h
|
133
|
-
- ext/rugged/rugged_blob.c
|
134
|
-
- ext/rugged/rugged_branch.c
|
141
|
+
- test/repo_pack_test.rb
|
135
142
|
- ext/rugged/rugged_commit.c
|
136
|
-
- ext/rugged/
|
143
|
+
- ext/rugged/rugged_blob.c
|
144
|
+
- ext/rugged/rugged.h
|
145
|
+
- ext/rugged/rugged_remote.c
|
137
146
|
- ext/rugged/rugged_index.c
|
138
|
-
- ext/rugged/
|
147
|
+
- ext/rugged/rugged_signature.c
|
148
|
+
- ext/rugged/rugged.c
|
139
149
|
- ext/rugged/rugged_reference.c
|
140
|
-
- ext/rugged/rugged_remote.c
|
141
150
|
- ext/rugged/rugged_repo.c
|
142
151
|
- ext/rugged/rugged_revwalk.c
|
143
|
-
- ext/rugged/
|
152
|
+
- ext/rugged/rugged_note.c
|
153
|
+
- ext/rugged/rugged_config.c
|
144
154
|
- ext/rugged/rugged_tag.c
|
155
|
+
- ext/rugged/rugged_object.c
|
156
|
+
- ext/rugged/rugged_settings.c
|
145
157
|
- ext/rugged/rugged_tree.c
|
146
|
-
-
|
147
|
-
- vendor/libgit2/include/git2/blob.h
|
148
|
-
- vendor/libgit2/include/git2/branch.h
|
149
|
-
- vendor/libgit2/include/git2/checkout.h
|
150
|
-
- vendor/libgit2/include/git2/clone.h
|
151
|
-
- vendor/libgit2/include/git2/commit.h
|
152
|
-
- vendor/libgit2/include/git2/common.h
|
153
|
-
- vendor/libgit2/include/git2/config.h
|
154
|
-
- vendor/libgit2/include/git2/diff.h
|
155
|
-
- vendor/libgit2/include/git2/errors.h
|
158
|
+
- ext/rugged/rugged_branch.c
|
156
159
|
- vendor/libgit2/include/git2/ignore.h
|
160
|
+
- vendor/libgit2/include/git2/refs.h
|
161
|
+
- vendor/libgit2/include/git2/version.h
|
162
|
+
- vendor/libgit2/include/git2/stdint.h
|
163
|
+
- vendor/libgit2/include/git2/attr.h
|
164
|
+
- vendor/libgit2/include/git2/signature.h
|
157
165
|
- vendor/libgit2/include/git2/index.h
|
166
|
+
- vendor/libgit2/include/git2/pack.h
|
167
|
+
- vendor/libgit2/include/git2/tree.h
|
168
|
+
- vendor/libgit2/include/git2/cred_helpers.h
|
169
|
+
- vendor/libgit2/include/git2/stash.h
|
170
|
+
- vendor/libgit2/include/git2/strarray.h
|
171
|
+
- vendor/libgit2/include/git2/object.h
|
172
|
+
- vendor/libgit2/include/git2/common.h
|
173
|
+
- vendor/libgit2/include/git2/transport.h
|
158
174
|
- vendor/libgit2/include/git2/indexer.h
|
175
|
+
- vendor/libgit2/include/git2/types.h
|
176
|
+
- vendor/libgit2/include/git2/branch.h
|
177
|
+
- vendor/libgit2/include/git2/submodule.h
|
178
|
+
- vendor/libgit2/include/git2/trace.h
|
179
|
+
- vendor/libgit2/include/git2/graph.h
|
180
|
+
- vendor/libgit2/include/git2/checkout.h
|
181
|
+
- vendor/libgit2/include/git2/blob.h
|
159
182
|
- vendor/libgit2/include/git2/inttypes.h
|
160
|
-
- vendor/libgit2/include/git2/
|
161
|
-
- vendor/libgit2/include/git2/message.h
|
183
|
+
- vendor/libgit2/include/git2/errors.h
|
162
184
|
- vendor/libgit2/include/git2/net.h
|
163
|
-
- vendor/libgit2/include/git2/notes.h
|
164
|
-
- vendor/libgit2/include/git2/object.h
|
165
|
-
- vendor/libgit2/include/git2/odb.h
|
166
|
-
- vendor/libgit2/include/git2/odb_backend.h
|
167
|
-
- vendor/libgit2/include/git2/oid.h
|
168
|
-
- vendor/libgit2/include/git2/pack.h
|
169
|
-
- vendor/libgit2/include/git2/reflog.h
|
170
|
-
- vendor/libgit2/include/git2/refs.h
|
171
185
|
- vendor/libgit2/include/git2/refspec.h
|
172
|
-
- vendor/libgit2/include/git2/remote.h
|
173
|
-
- vendor/libgit2/include/git2/repository.h
|
174
|
-
- vendor/libgit2/include/git2/reset.h
|
175
186
|
- vendor/libgit2/include/git2/revparse.h
|
176
|
-
- vendor/libgit2/include/git2/
|
177
|
-
- vendor/libgit2/include/git2/
|
187
|
+
- vendor/libgit2/include/git2/odb_backend.h
|
188
|
+
- vendor/libgit2/include/git2/refdb.h
|
189
|
+
- vendor/libgit2/include/git2/odb.h
|
190
|
+
- vendor/libgit2/include/git2/reset.h
|
191
|
+
- vendor/libgit2/include/git2/commit.h
|
192
|
+
- vendor/libgit2/include/git2/merge.h
|
193
|
+
- vendor/libgit2/include/git2/repository.h
|
194
|
+
- vendor/libgit2/include/git2/clone.h
|
178
195
|
- vendor/libgit2/include/git2/status.h
|
179
|
-
- vendor/libgit2/include/git2/stdint.h
|
180
|
-
- vendor/libgit2/include/git2/strarray.h
|
181
|
-
- vendor/libgit2/include/git2/submodule.h
|
182
196
|
- vendor/libgit2/include/git2/tag.h
|
197
|
+
- vendor/libgit2/include/git2/oid.h
|
198
|
+
- vendor/libgit2/include/git2/remote.h
|
199
|
+
- vendor/libgit2/include/git2/config.h
|
200
|
+
- vendor/libgit2/include/git2/message.h
|
201
|
+
- vendor/libgit2/include/git2/revwalk.h
|
202
|
+
- vendor/libgit2/include/git2/diff.h
|
183
203
|
- vendor/libgit2/include/git2/threads.h
|
184
|
-
- vendor/libgit2/include/git2/
|
185
|
-
- vendor/libgit2/include/git2/
|
186
|
-
- vendor/libgit2/include/git2/
|
204
|
+
- vendor/libgit2/include/git2/reflog.h
|
205
|
+
- vendor/libgit2/include/git2/push.h
|
206
|
+
- vendor/libgit2/include/git2/notes.h
|
207
|
+
- vendor/libgit2/include/git2/refdb_backend.h
|
187
208
|
- vendor/libgit2/include/git2.h
|
188
|
-
- vendor/libgit2/src/
|
189
|
-
- vendor/libgit2/src/
|
209
|
+
- vendor/libgit2/src/ignore.h
|
210
|
+
- vendor/libgit2/src/odb_loose.c
|
211
|
+
- vendor/libgit2/src/refs.h
|
212
|
+
- vendor/libgit2/src/odb.c
|
213
|
+
- vendor/libgit2/src/commit_list.h
|
214
|
+
- vendor/libgit2/src/vector.h
|
215
|
+
- vendor/libgit2/src/commit_list.c
|
216
|
+
- vendor/libgit2/src/notes.c
|
217
|
+
- vendor/libgit2/src/hash/hash_win32.c
|
218
|
+
- vendor/libgit2/src/hash/hash_win32.h
|
219
|
+
- vendor/libgit2/src/hash/hash_generic.h
|
220
|
+
- vendor/libgit2/src/hash/hash_openssl.h
|
221
|
+
- vendor/libgit2/src/hash/hash_generic.c
|
222
|
+
- vendor/libgit2/src/diff_output.c
|
223
|
+
- vendor/libgit2/src/graph.c
|
224
|
+
- vendor/libgit2/src/pqueue.h
|
225
|
+
- vendor/libgit2/src/path.c
|
226
|
+
- vendor/libgit2/src/reflog.c
|
227
|
+
- vendor/libgit2/src/tree.c
|
190
228
|
- vendor/libgit2/src/attr.h
|
191
|
-
- vendor/libgit2/src/
|
192
|
-
- vendor/libgit2/src/
|
193
|
-
- vendor/libgit2/src/
|
194
|
-
- vendor/libgit2/src/
|
195
|
-
- vendor/libgit2/src/
|
196
|
-
- vendor/libgit2/src/
|
197
|
-
- vendor/libgit2/src/
|
198
|
-
- vendor/libgit2/src/buffer.h
|
199
|
-
- vendor/libgit2/src/cache.c
|
200
|
-
- vendor/libgit2/src/cache.h
|
201
|
-
- vendor/libgit2/src/cc-compat.h
|
202
|
-
- vendor/libgit2/src/checkout.c
|
203
|
-
- vendor/libgit2/src/clone.c
|
204
|
-
- vendor/libgit2/src/commit.c
|
205
|
-
- vendor/libgit2/src/commit.h
|
206
|
-
- vendor/libgit2/src/common.h
|
207
|
-
- vendor/libgit2/src/compress.c
|
229
|
+
- vendor/libgit2/src/remote.c
|
230
|
+
- vendor/libgit2/src/thread-utils.c
|
231
|
+
- vendor/libgit2/src/repo_template.h
|
232
|
+
- vendor/libgit2/src/signature.h
|
233
|
+
- vendor/libgit2/src/index.h
|
234
|
+
- vendor/libgit2/src/pack.h
|
235
|
+
- vendor/libgit2/src/refdb_fs.c
|
208
236
|
- vendor/libgit2/src/compress.h
|
237
|
+
- vendor/libgit2/src/tree.h
|
238
|
+
- vendor/libgit2/src/tag.c
|
239
|
+
- vendor/libgit2/src/filebuf.c
|
240
|
+
- vendor/libgit2/src/attrcache.h
|
241
|
+
- vendor/libgit2/src/cc-compat.h
|
242
|
+
- vendor/libgit2/src/revwalk.c
|
243
|
+
- vendor/libgit2/src/attr.c
|
244
|
+
- vendor/libgit2/src/push.c
|
245
|
+
- vendor/libgit2/src/branch.c
|
246
|
+
- vendor/libgit2/src/fnmatch.c
|
247
|
+
- vendor/libgit2/src/odb_pack.c
|
209
248
|
- vendor/libgit2/src/config.c
|
210
|
-
- vendor/libgit2/src/
|
211
|
-
- vendor/libgit2/src/
|
212
|
-
- vendor/libgit2/src/
|
213
|
-
- vendor/libgit2/src/
|
214
|
-
- vendor/libgit2/src/
|
215
|
-
- vendor/libgit2/src/
|
249
|
+
- vendor/libgit2/src/offmap.h
|
250
|
+
- vendor/libgit2/src/thread-utils.h
|
251
|
+
- vendor/libgit2/src/object.h
|
252
|
+
- vendor/libgit2/src/common.h
|
253
|
+
- vendor/libgit2/src/sha1_lookup.c
|
254
|
+
- vendor/libgit2/src/transport.c
|
255
|
+
- vendor/libgit2/src/pathspec.c
|
216
256
|
- vendor/libgit2/src/delta-apply.c
|
217
|
-
- vendor/libgit2/src/
|
218
|
-
- vendor/libgit2/src/
|
257
|
+
- vendor/libgit2/src/oid.c
|
258
|
+
- vendor/libgit2/src/config_cache.c
|
259
|
+
- vendor/libgit2/src/status.c
|
260
|
+
- vendor/libgit2/src/map.h
|
261
|
+
- vendor/libgit2/src/transports/cred.c
|
262
|
+
- vendor/libgit2/src/transports/git.c
|
263
|
+
- vendor/libgit2/src/transports/local.c
|
264
|
+
- vendor/libgit2/src/transports/winhttp.c
|
265
|
+
- vendor/libgit2/src/transports/cred_helpers.c
|
266
|
+
- vendor/libgit2/src/transports/http.c
|
267
|
+
- vendor/libgit2/src/transports/smart_protocol.c
|
268
|
+
- vendor/libgit2/src/transports/smart.h
|
269
|
+
- vendor/libgit2/src/transports/smart_pkt.c
|
270
|
+
- vendor/libgit2/src/transports/smart.c
|
219
271
|
- vendor/libgit2/src/delta.h
|
220
|
-
- vendor/libgit2/src/diff.c
|
221
|
-
- vendor/libgit2/src/diff.h
|
222
|
-
- vendor/libgit2/src/diff_output.c
|
223
|
-
- vendor/libgit2/src/diff_output.h
|
224
|
-
- vendor/libgit2/src/errors.c
|
225
272
|
- vendor/libgit2/src/fetch.c
|
226
|
-
- vendor/libgit2/src/
|
227
|
-
- vendor/libgit2/src/
|
228
|
-
- vendor/libgit2/src/
|
273
|
+
- vendor/libgit2/src/pack-objects.c
|
274
|
+
- vendor/libgit2/src/refs.c
|
275
|
+
- vendor/libgit2/src/iterator.h
|
276
|
+
- vendor/libgit2/src/win32/mingw-compat.h
|
277
|
+
- vendor/libgit2/src/win32/error.c
|
278
|
+
- vendor/libgit2/src/win32/version.h
|
279
|
+
- vendor/libgit2/src/win32/error.h
|
280
|
+
- vendor/libgit2/src/win32/msvc-compat.h
|
281
|
+
- vendor/libgit2/src/win32/precompiled.h
|
282
|
+
- vendor/libgit2/src/win32/findfile.h
|
283
|
+
- vendor/libgit2/src/win32/findfile.c
|
284
|
+
- vendor/libgit2/src/win32/precompiled.c
|
285
|
+
- vendor/libgit2/src/win32/dir.c
|
286
|
+
- vendor/libgit2/src/win32/utf-conv.h
|
287
|
+
- vendor/libgit2/src/win32/utf-conv.c
|
288
|
+
- vendor/libgit2/src/win32/posix.h
|
289
|
+
- vendor/libgit2/src/win32/pthread.h
|
290
|
+
- vendor/libgit2/src/win32/map.c
|
291
|
+
- vendor/libgit2/src/win32/dir.h
|
292
|
+
- vendor/libgit2/src/win32/posix_w32.c
|
293
|
+
- vendor/libgit2/src/win32/pthread.c
|
294
|
+
- vendor/libgit2/src/attr_file.c
|
295
|
+
- vendor/libgit2/src/tree-cache.c
|
296
|
+
- vendor/libgit2/src/branch.h
|
297
|
+
- vendor/libgit2/src/hash.h
|
298
|
+
- vendor/libgit2/src/filter.h
|
299
|
+
- vendor/libgit2/src/unix/realpath.c
|
300
|
+
- vendor/libgit2/src/unix/posix.h
|
301
|
+
- vendor/libgit2/src/unix/map.c
|
302
|
+
- vendor/libgit2/src/trace.c
|
303
|
+
- vendor/libgit2/src/message.c
|
304
|
+
- vendor/libgit2/src/hashsig.h
|
305
|
+
- vendor/libgit2/src/date.c
|
306
|
+
- vendor/libgit2/src/submodule.h
|
229
307
|
- vendor/libgit2/src/fileops.c
|
230
|
-
- vendor/libgit2/src/
|
308
|
+
- vendor/libgit2/src/trace.h
|
309
|
+
- vendor/libgit2/src/ignore.c
|
310
|
+
- vendor/libgit2/src/diff_output.h
|
311
|
+
- vendor/libgit2/src/fetch.h
|
312
|
+
- vendor/libgit2/src/refdb.c
|
231
313
|
- vendor/libgit2/src/filter.c
|
232
|
-
- vendor/libgit2/src/
|
233
|
-
- vendor/libgit2/src/
|
314
|
+
- vendor/libgit2/src/buf_text.c
|
315
|
+
- vendor/libgit2/src/checkout.h
|
316
|
+
- vendor/libgit2/src/clone.c
|
317
|
+
- vendor/libgit2/src/repository.c
|
318
|
+
- vendor/libgit2/src/config_file.h
|
319
|
+
- vendor/libgit2/src/pack-objects.h
|
320
|
+
- vendor/libgit2/src/compress.c
|
321
|
+
- vendor/libgit2/src/tsort.c
|
322
|
+
- vendor/libgit2/src/blob.h
|
323
|
+
- vendor/libgit2/src/refspec.c
|
324
|
+
- vendor/libgit2/src/util.h
|
325
|
+
- vendor/libgit2/src/oidmap.h
|
326
|
+
- vendor/libgit2/src/global.h
|
234
327
|
- vendor/libgit2/src/fnmatch.h
|
235
328
|
- vendor/libgit2/src/global.c
|
236
|
-
- vendor/libgit2/src/
|
237
|
-
- vendor/libgit2/src/
|
238
|
-
- vendor/libgit2/src/
|
239
|
-
- vendor/libgit2/src/
|
240
|
-
- vendor/libgit2/src/ignore.h
|
241
|
-
- vendor/libgit2/src/index.c
|
242
|
-
- vendor/libgit2/src/index.h
|
243
|
-
- vendor/libgit2/src/indexer.c
|
244
|
-
- vendor/libgit2/src/iterator.c
|
245
|
-
- vendor/libgit2/src/iterator.h
|
329
|
+
- vendor/libgit2/src/diff.c
|
330
|
+
- vendor/libgit2/src/crlf.c
|
331
|
+
- vendor/libgit2/src/fileops.h
|
332
|
+
- vendor/libgit2/src/hashsig.c
|
246
333
|
- vendor/libgit2/src/khash.h
|
247
|
-
- vendor/libgit2/src/
|
248
|
-
- vendor/libgit2/src/
|
249
|
-
- vendor/libgit2/src/message.h
|
250
|
-
- vendor/libgit2/src/mwindow.c
|
251
|
-
- vendor/libgit2/src/mwindow.h
|
252
|
-
- vendor/libgit2/src/netops.c
|
334
|
+
- vendor/libgit2/src/submodule.c
|
335
|
+
- vendor/libgit2/src/diff_tform.c
|
253
336
|
- vendor/libgit2/src/netops.h
|
254
|
-
- vendor/libgit2/src/
|
255
|
-
- vendor/libgit2/src/
|
337
|
+
- vendor/libgit2/src/commit.c
|
338
|
+
- vendor/libgit2/src/posix.c
|
339
|
+
- vendor/libgit2/src/buffer.h
|
256
340
|
- vendor/libgit2/src/object.c
|
257
|
-
- vendor/libgit2/src/
|
258
|
-
- vendor/libgit2/src/
|
341
|
+
- vendor/libgit2/src/path.h
|
342
|
+
- vendor/libgit2/src/blob.c
|
343
|
+
- vendor/libgit2/src/cache.c
|
344
|
+
- vendor/libgit2/src/refspec.h
|
345
|
+
- vendor/libgit2/src/strmap.h
|
346
|
+
- vendor/libgit2/src/config_file.c
|
347
|
+
- vendor/libgit2/src/vector.c
|
348
|
+
- vendor/libgit2/src/refdb.h
|
349
|
+
- vendor/libgit2/src/netops.c
|
350
|
+
- vendor/libgit2/src/checkout.c
|
351
|
+
- vendor/libgit2/src/fetchhead.h
|
259
352
|
- vendor/libgit2/src/odb.h
|
260
|
-
- vendor/libgit2/src/odb_loose.c
|
261
|
-
- vendor/libgit2/src/odb_pack.c
|
262
|
-
- vendor/libgit2/src/oid.c
|
263
|
-
- vendor/libgit2/src/oidmap.h
|
264
|
-
- vendor/libgit2/src/pack-objects.c
|
265
|
-
- vendor/libgit2/src/pack-objects.h
|
266
353
|
- vendor/libgit2/src/pack.c
|
267
|
-
- vendor/libgit2/src/
|
268
|
-
- vendor/libgit2/src/
|
269
|
-
- vendor/libgit2/src/
|
270
|
-
- vendor/libgit2/src/pkt.c
|
271
|
-
- vendor/libgit2/src/pkt.h
|
272
|
-
- vendor/libgit2/src/pool.c
|
273
|
-
- vendor/libgit2/src/pool.h
|
274
|
-
- vendor/libgit2/src/posix.c
|
275
|
-
- vendor/libgit2/src/posix.h
|
276
|
-
- vendor/libgit2/src/ppc/sha1.c
|
277
|
-
- vendor/libgit2/src/ppc/sha1.h
|
354
|
+
- vendor/libgit2/src/commit.h
|
355
|
+
- vendor/libgit2/src/indexer.c
|
356
|
+
- vendor/libgit2/src/merge.h
|
278
357
|
- vendor/libgit2/src/pqueue.c
|
279
|
-
- vendor/libgit2/src/pqueue.h
|
280
|
-
- vendor/libgit2/src/protocol.c
|
281
|
-
- vendor/libgit2/src/protocol.h
|
282
|
-
- vendor/libgit2/src/reflog.c
|
283
|
-
- vendor/libgit2/src/reflog.h
|
284
|
-
- vendor/libgit2/src/refs.c
|
285
|
-
- vendor/libgit2/src/refs.h
|
286
|
-
- vendor/libgit2/src/refspec.c
|
287
|
-
- vendor/libgit2/src/refspec.h
|
288
|
-
- vendor/libgit2/src/remote.c
|
289
|
-
- vendor/libgit2/src/remote.h
|
290
|
-
- vendor/libgit2/src/repo_template.h
|
291
|
-
- vendor/libgit2/src/repository.c
|
292
358
|
- vendor/libgit2/src/repository.h
|
293
|
-
- vendor/libgit2/src/
|
294
|
-
- vendor/libgit2/src/
|
295
|
-
- vendor/libgit2/src/revwalk.c
|
296
|
-
- vendor/libgit2/src/sha1/sha1.c
|
297
|
-
- vendor/libgit2/src/sha1.h
|
298
|
-
- vendor/libgit2/src/sha1_lookup.c
|
299
|
-
- vendor/libgit2/src/sha1_lookup.h
|
359
|
+
- vendor/libgit2/src/mwindow.c
|
360
|
+
- vendor/libgit2/src/attr_file.h
|
300
361
|
- vendor/libgit2/src/signature.c
|
301
|
-
- vendor/libgit2/src/
|
302
|
-
- vendor/libgit2/src/status.c
|
303
|
-
- vendor/libgit2/src/strmap.h
|
304
|
-
- vendor/libgit2/src/submodule.c
|
305
|
-
- vendor/libgit2/src/submodule.h
|
306
|
-
- vendor/libgit2/src/tag.c
|
362
|
+
- vendor/libgit2/src/pathspec.h
|
307
363
|
- vendor/libgit2/src/tag.h
|
308
|
-
- vendor/libgit2/src/
|
309
|
-
- vendor/libgit2/src/
|
310
|
-
- vendor/libgit2/src/
|
311
|
-
- vendor/libgit2/src/
|
312
|
-
- vendor/libgit2/src/
|
313
|
-
- vendor/libgit2/src/
|
314
|
-
- vendor/libgit2/src/
|
315
|
-
- vendor/libgit2/src/
|
364
|
+
- vendor/libgit2/src/sha1_lookup.h
|
365
|
+
- vendor/libgit2/src/remote.h
|
366
|
+
- vendor/libgit2/src/hash.c
|
367
|
+
- vendor/libgit2/src/delta.c
|
368
|
+
- vendor/libgit2/src/config.h
|
369
|
+
- vendor/libgit2/src/refdb_fs.h
|
370
|
+
- vendor/libgit2/src/message.h
|
371
|
+
- vendor/libgit2/src/delta-apply.h
|
372
|
+
- vendor/libgit2/src/stash.c
|
373
|
+
- vendor/libgit2/src/posix.h
|
374
|
+
- vendor/libgit2/src/index.c
|
375
|
+
- vendor/libgit2/src/revparse.c
|
376
|
+
- vendor/libgit2/src/revwalk.h
|
316
377
|
- vendor/libgit2/src/tree-cache.h
|
317
|
-
- vendor/libgit2/src/
|
318
|
-
- vendor/libgit2/src/
|
319
|
-
- vendor/libgit2/src/tsort.c
|
320
|
-
- vendor/libgit2/src/unix/map.c
|
321
|
-
- vendor/libgit2/src/unix/posix.h
|
322
|
-
- vendor/libgit2/src/util.c
|
323
|
-
- vendor/libgit2/src/util.h
|
324
|
-
- vendor/libgit2/src/vector.c
|
325
|
-
- vendor/libgit2/src/vector.h
|
326
|
-
- vendor/libgit2/src/win32/dir.c
|
327
|
-
- vendor/libgit2/src/win32/dir.h
|
328
|
-
- vendor/libgit2/src/win32/findfile.c
|
329
|
-
- vendor/libgit2/src/win32/findfile.h
|
330
|
-
- vendor/libgit2/src/win32/map.c
|
331
|
-
- vendor/libgit2/src/win32/mingw-compat.h
|
332
|
-
- vendor/libgit2/src/win32/msvc-compat.h
|
333
|
-
- vendor/libgit2/src/win32/posix.h
|
334
|
-
- vendor/libgit2/src/win32/posix_w32.c
|
335
|
-
- vendor/libgit2/src/win32/precompiled.c
|
336
|
-
- vendor/libgit2/src/win32/precompiled.h
|
337
|
-
- vendor/libgit2/src/win32/pthread.c
|
338
|
-
- vendor/libgit2/src/win32/pthread.h
|
339
|
-
- vendor/libgit2/src/win32/utf-conv.c
|
340
|
-
- vendor/libgit2/src/win32/utf-conv.h
|
341
|
-
- vendor/libgit2/src/xdiff/xdiff.h
|
342
|
-
- vendor/libgit2/src/xdiff/xdiffi.c
|
378
|
+
- vendor/libgit2/src/iterator.c
|
379
|
+
- vendor/libgit2/src/xdiff/xinclude.h
|
343
380
|
- vendor/libgit2/src/xdiff/xdiffi.h
|
344
|
-
- vendor/libgit2/src/xdiff/
|
381
|
+
- vendor/libgit2/src/xdiff/xprepare.h
|
345
382
|
- vendor/libgit2/src/xdiff/xemit.h
|
346
|
-
- vendor/libgit2/src/xdiff/
|
347
|
-
- vendor/libgit2/src/xdiff/
|
383
|
+
- vendor/libgit2/src/xdiff/xutils.c
|
384
|
+
- vendor/libgit2/src/xdiff/xdiff.h
|
385
|
+
- vendor/libgit2/src/xdiff/xprepare.c
|
386
|
+
- vendor/libgit2/src/xdiff/xpatience.c
|
348
387
|
- vendor/libgit2/src/xdiff/xmacros.h
|
388
|
+
- vendor/libgit2/src/xdiff/xutils.h
|
389
|
+
- vendor/libgit2/src/xdiff/xdiffi.c
|
390
|
+
- vendor/libgit2/src/xdiff/xhistogram.c
|
349
391
|
- vendor/libgit2/src/xdiff/xmerge.c
|
350
|
-
- vendor/libgit2/src/xdiff/xpatience.c
|
351
|
-
- vendor/libgit2/src/xdiff/xprepare.c
|
352
|
-
- vendor/libgit2/src/xdiff/xprepare.h
|
353
392
|
- vendor/libgit2/src/xdiff/xtypes.h
|
354
|
-
- vendor/libgit2/src/xdiff/
|
355
|
-
- vendor/libgit2/src/
|
356
|
-
- vendor/libgit2/
|
357
|
-
- vendor/libgit2/
|
358
|
-
- vendor/libgit2/
|
359
|
-
- vendor/libgit2/
|
360
|
-
- vendor/libgit2/
|
361
|
-
- vendor/libgit2/
|
362
|
-
- vendor/libgit2/
|
363
|
-
- vendor/libgit2/
|
364
|
-
- vendor/libgit2/
|
365
|
-
- vendor/libgit2/
|
393
|
+
- vendor/libgit2/src/xdiff/xemit.c
|
394
|
+
- vendor/libgit2/src/diff.h
|
395
|
+
- vendor/libgit2/src/fetchhead.c
|
396
|
+
- vendor/libgit2/src/reflog.h
|
397
|
+
- vendor/libgit2/src/cache.h
|
398
|
+
- vendor/libgit2/src/amiga/map.c
|
399
|
+
- vendor/libgit2/src/filebuf.h
|
400
|
+
- vendor/libgit2/src/mwindow.h
|
401
|
+
- vendor/libgit2/src/push.h
|
402
|
+
- vendor/libgit2/src/notes.h
|
403
|
+
- vendor/libgit2/src/pool.h
|
404
|
+
- vendor/libgit2/src/util.c
|
405
|
+
- vendor/libgit2/src/buf_text.h
|
406
|
+
- vendor/libgit2/src/merge.c
|
407
|
+
- vendor/libgit2/src/reset.c
|
408
|
+
- vendor/libgit2/src/errors.c
|
409
|
+
- vendor/libgit2/src/buffer.c
|
410
|
+
- vendor/libgit2/src/bswap.h
|
411
|
+
- vendor/libgit2/src/pool.c
|
412
|
+
- vendor/libgit2/deps/zlib/zutil.h
|
366
413
|
- vendor/libgit2/deps/zlib/crc32.c
|
414
|
+
- vendor/libgit2/deps/zlib/inflate.h
|
415
|
+
- vendor/libgit2/deps/zlib/inffast.h
|
416
|
+
- vendor/libgit2/deps/zlib/adler32.c
|
417
|
+
- vendor/libgit2/deps/zlib/zlib.h
|
418
|
+
- vendor/libgit2/deps/zlib/inffast.c
|
419
|
+
- vendor/libgit2/deps/zlib/zutil.c
|
367
420
|
- vendor/libgit2/deps/zlib/crc32.h
|
368
|
-
- vendor/libgit2/deps/zlib/
|
421
|
+
- vendor/libgit2/deps/zlib/trees.h
|
369
422
|
- vendor/libgit2/deps/zlib/deflate.h
|
370
|
-
- vendor/libgit2/deps/zlib/inffast.c
|
371
|
-
- vendor/libgit2/deps/zlib/inffast.h
|
372
|
-
- vendor/libgit2/deps/zlib/inffixed.h
|
373
|
-
- vendor/libgit2/deps/zlib/inflate.c
|
374
|
-
- vendor/libgit2/deps/zlib/inflate.h
|
375
423
|
- vendor/libgit2/deps/zlib/inftrees.c
|
376
424
|
- vendor/libgit2/deps/zlib/inftrees.h
|
377
425
|
- vendor/libgit2/deps/zlib/trees.c
|
378
|
-
- vendor/libgit2/deps/zlib/
|
426
|
+
- vendor/libgit2/deps/zlib/inflate.c
|
427
|
+
- vendor/libgit2/deps/zlib/inffixed.h
|
428
|
+
- vendor/libgit2/deps/zlib/deflate.c
|
379
429
|
- vendor/libgit2/deps/zlib/zconf.h
|
380
|
-
- vendor/libgit2/deps/
|
381
|
-
- vendor/libgit2/deps/
|
382
|
-
- vendor/libgit2/deps/
|
430
|
+
- vendor/libgit2/deps/regex/regex.h
|
431
|
+
- vendor/libgit2/deps/regex/regex.c
|
432
|
+
- vendor/libgit2/deps/regex/regex_internal.h
|
433
|
+
- vendor/libgit2/deps/regex/regex_internal.c
|
434
|
+
- vendor/libgit2/deps/regex/regcomp.c
|
435
|
+
- vendor/libgit2/deps/regex/config.h
|
436
|
+
- vendor/libgit2/deps/regex/regexec.c
|
437
|
+
- vendor/libgit2/deps/http-parser/http_parser.c
|
438
|
+
- vendor/libgit2/deps/http-parser/http_parser.h
|
383
439
|
- vendor/libgit2/Makefile.embed
|
384
440
|
- ext/rugged/extconf.rb
|
385
441
|
homepage: http://github.com/libgit2/rugged
|