Commit 8887a2a
File tree
63 files changed
+252
-95
lines changed- External
- ObjectiveGitFramework.xcodeproj
- ObjectiveGitTests
- ObjectiveGit
Some content is hidden
Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
63 files changed
+252
-95
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7 | 7 | | |
8 | 8 | | |
9 | 9 | | |
10 | | - | |
| 10 | + | |
11 | 11 | | |
12 | 12 | | |
13 | | - | |
| 13 | + | |
14 | 14 | | |
15 | 15 | | |
16 | | - | |
| 16 | + | |
17 | 17 | | |
18 | 18 | | |
19 | | - | |
20 | | - | |
21 | | - | |
22 | | - | |
- .travis.yml+12-2
- CHANGELOG.md+39-3
- CMakeLists.txt+25-9
- THREADING.md+17-9
- examples/blame.c+2-2
- examples/network/clone.c+2
- examples/status.c+10-16
- include/git2/blob.h+4-6
- include/git2/describe.h+1-1
- include/git2/diff.h+1-1
- include/git2/errors.h+2
- include/git2/remote.h+3-3
- include/git2/submodule.h+41-83
- include/git2/sys/stream.h+2
- include/git2/types.h+14-10
- include/git2/version.h+3-3
- libgit2.pc.in+4-2
- script/cibuild.sh-2
- script/install-deps-linux.sh-6
- src/buffer.c+8-6
- src/buffer.h+1-1
- src/checkout.c+2-8
- src/config.c+20
- src/config.h+6
- src/curl_stream.c+257
- src/curl_stream.h+14
- src/diff.c+12-7
- src/diff.h+20
- src/diff_file.c+1-1
- src/diff_patch.c+39-13
- src/diff_patch.h+2
- src/diff_print.c+4-1
- src/diff_tform.c+24-57
- src/fetch.c+1-1
- src/fetch.h-7
- src/index.c+41-2
- src/iterator.c+98
- src/iterator.h+23
- src/merge.c+30-86
- src/object.c+5-5
- src/odb.c+1-1
- src/openssl_stream.c+111-12
- src/path.c+2-2
- src/refspec.c+3
- src/remote.c+16-5
- src/repository.c+37-13
- src/repository.h-1
- src/stash.c+129-3
- src/stransport_stream.c+17-1
- src/stream.h+15
- src/submodule.c+412-676
- src/submodule.h-24
- src/transports/http.c+22-3
- src/transports/winhttp.c-1
- src/unix/posix.h+1
- tests/checkout/conflict.c+4-1
- tests/checkout/crlf.c+15-5
- tests/checkout/index.c+1-1
- tests/clar/sandbox.h+1-1
- tests/core/buffer.c+13
- tests/diff/binary.c+41-1
- tests/diff/blob.c+14-14
- tests/diff/index.c+30-1
- tests/diff/racy.c-39
- tests/diff/submodules.c+8-8
- tests/diff/tree.c+1-1
- tests/diff/workdir.c+70-7
- tests/fetchhead/nonetwork.c+47
- tests/filter/file.c+2-2
- tests/index/addall.c+1-1
- tests/index/racy.c+147
- tests/merge/workdir/dirty.c+14-1
- tests/refs/revparse.c+15
- tests/repo/open.c+17
- tests/stash/apply.c+119-9
- tests/stash/foreach.c+11-9
- tests/stash/save.c+10-2
- tests/stash/stash_helpers.c+5
- tests/status/worktree.c+2
- tests/submodule/init.c+3-3
- tests/submodule/lookup.c+26
- tests/submodule/modify.c+77-126
- tests/submodule/nosubs.c-46
- tests/submodule/status.c+27-38
- tests/submodule/submodule_helpers.c+4-7
- tests/submodule/update.c+21-9
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| 20 | + | |
| 21 | + | |
20 | 22 | | |
21 | 23 | | |
22 | 24 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
21 | 21 | | |
22 | 22 | | |
23 | 23 | | |
| 24 | + | |
| 25 | + | |
| 26 | + | |
| 27 | + | |
| 28 | + | |
24 | 29 | | |
25 | 30 | | |
26 | 31 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
17 | 17 | | |
18 | 18 | | |
19 | 19 | | |
| 20 | + | |
| 21 | + | |
20 | 22 | | |
21 | 23 | | |
22 | 24 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
12 | 12 | | |
13 | 13 | | |
14 | 14 | | |
| 15 | + | |
| 16 | + | |
| 17 | + | |
| 18 | + | |
| 19 | + | |
15 | 20 | | |
16 | 21 | | |
17 | 22 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
54 | 54 | | |
55 | 55 | | |
56 | 56 | | |
| 57 | + | |
| 58 | + | |
57 | 59 | | |
58 | 60 | | |
59 | 61 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
69 | 69 | | |
70 | 70 | | |
71 | 71 | | |
| 72 | + | |
| 73 | + | |
| 74 | + | |
| 75 | + | |
| 76 | + | |
72 | 77 | | |
73 | 78 | | |
74 | 79 | | |
| |||
146 | 151 | | |
147 | 152 | | |
148 | 153 | | |
149 | | - | |
| 154 | + | |
150 | 155 | | |
151 | 156 | | |
152 | 157 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
| 26 | + | |
| 27 | + | |
26 | 28 | | |
27 | 29 | | |
28 | 30 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
33 | 33 | | |
34 | 34 | | |
35 | 35 | | |
| 36 | + | |
| 37 | + | |
| 38 | + | |
| 39 | + | |
| 40 | + | |
36 | 41 | | |
37 | 42 | | |
38 | 43 | | |
| |||
0 commit comments