| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2018-01-25 | merge: add two missing AnnotatedCommit methods | Josh Bleecher Snyder | |
| 2018-01-17 | Merge pull request #419 from libgit2/cmn/bump-libgit2 | Carlos Martín Nieto | |
| Cmn/bump libgit2 | |||
| 2018-01-17 | diff: add two missing options | Carlos Martín Nieto | |
| 2018-01-17 | Bump libgit2 to f1323d9c | Carlos Martín Nieto | |
| 2017-10-16 | Merge pull request #413 from libgit2/cmn/master-static | Carlos Martín Nieto | |
| README: master wants to use install-static | |||
| 2017-10-16 | README: correct the branches in the testing block | Carlos Martín Nieto | |
| 2017-10-16 | README: master wants to use install-static | Carlos Martín Nieto | |
| 2017-10-03 | Merge pull request #411 from harsimranmaan/patch-1 | Carlos Martín Nieto | |
| Fix typo in the error message | |||
| 2017-10-01 | Fix typo in the error message | Harsimran Singh Maan | |
| 2017-09-29 | Merge pull request #409 from libgit2/cmn/bumping | Carlos Martín Nieto | |
| Bump libgit2 to c7c5f2c4ec | |||
| 2017-09-29 | patch: adjust to new function signature | Carlos Martín Nieto | |
| 2017-09-29 | Bump libgit2 to c7c5f2c4ec | Carlos Martín Nieto | |
| 2017-09-03 | Merge pull request #398 from reujab/master | Carlos Martín Nieto | |
| Fixed typos | |||
| 2017-09-03 | Merge pull request #406 from libgit2/cmn/go19 | Carlos Martín Nieto | |
| travis: include go 1.9 | |||
| 2017-09-03 | travis: include go 1.9 | Carlos Martín Nieto | |
| 2017-09-03 | travis: don't update submodules recursively | Carlos Martín Nieto | |
| We have invalid submodules for testing and Travis gets unhappy. | |||
| 2017-09-03 | Go back to the v0.26 libgit2 release | Carlos Martín Nieto | |
| Newer commits have changed the build scripts such that the HTTP parser is not included in the static library. This also reverts commit ecf4f7a137ba69014d414b8de20eb58e115bfd73. | |||
| 2017-09-03 | patch: correct a pointer type | Carlos Martín Nieto | |
| 2017-09-03 | clone_checkout_strategy removed | Mikołaj Baranowski | |
| https://github.com/libgit2/libgit2/releases/tag/v0.26.0 | |||
| 2017-09-03 | Update vendored libgit2 to latest | Carlos Martín Nieto | |
| 2017-07-11 | a MIT -> an MIT | reujab | |
| 2017-07-11 | fixed typos | reujab | |
| 2017-07-09 | Merge pull request #397 from libgit2/cmn/tag-generic | Carlos Martín Nieto | |
| Tag any kind of object | |||
| 2017-07-08 | tag: accept an Objecter for creating a tag | Carlos Martín Nieto | |
| This lets us create a tag for any kind of object. | |||
| 2017-07-08 | Add Objecer interface | Carlos Martín Nieto | |
| We do want to be able to accept generic objects in functions. Add this interface so we can accept that instead of specific object types. | |||
| 2017-07-08 | Merge pull request #396 from libgit2/cmn/rebase-no-operation | Carlos Martín Nieto | |
| rebase: correct the return values for CurrentOperationIndex | |||
| 2017-07-08 | rebase: correct the return values for CurrentOperationIndex | Carlos Martín Nieto | |
| We were incorectly reporting `C.GIT_REBASE_NO_OPERATION` as an error code when it is none. We should instead return it as the value. The compiler doesn't seem to actually look at the sizes so instead we must recreate the value ourselves with `^uint(0)`. The error return is kept for API compatibility but should go away eventually. | |||
| 2017-07-08 | Merge pull request #395 from libgit2/cmn/check-thread-lock | Carlos Martín Nieto | |
| Deduplicate Makefile static target and add thread locking check | |||
| 2017-07-08 | Deduplicate Makefile static target and add thread locking check | Carlos Martín Nieto | |
| It turns out we had been running CI without performing the thread locking check. | |||
| 2017-07-08 | Merge pull request #393 from libgit2/cmn/keepalive-all-the-things | Carlos Martín Nieto | |
| KeepAlive all the things | |||
| 2017-07-08 | Third round of keep-alive aditions | Carlos Martín Nieto | |
| 2017-07-08 | Second round of keep-alives | Carlos Martín Nieto | |
| 2017-07-08 | First round of mass keep-alive additions | Carlos Martín Nieto | |
| 2017-07-07 | commit: add keep-alives for those that need conversion to pointer receivers | Carlos Martín Nieto | |
| We can't work on the copies here, we need to have pointer receivers so we know we're keeping alive the object whose finalizer would free the unmanaged memory we're working with. | |||
| 2017-07-07 | commit: add thread locking to signature extraction | Carlos Martín Nieto | |
| 2017-07-06 | Merge pull request #389 from KatolaZ/master | Carlos Martín Nieto | |
| Added Commit.ExtractSignature to wrap git_commit_extract_signature | |||
| 2017-07-06 | Merge pull request #390 from libgit2/cmn/go-vet | Carlos Martín Nieto | |
| Fix a couple of issues reported by go-vet | |||
| 2017-07-06 | Fix a couple of issues reported by go-vet | Carlos Martín Nieto | |
| 2017-07-06 | Added Commit.ExtractSignature to wrap git_commit_extract_signature | KatolaZ | |
| 2017-07-04 | Merge pull request #387 from libgit2/cmn/remote-refs | Carlos Martín Nieto | |
| remote: add keep-alive and references to the repository | |||
| 2017-07-04 | travis: update the Go versions | Carlos Martín Nieto | |
| We need to use `runtime.KeepAlive()` which only exists past Go 1.7. Furthermore, Go 1.7 is the latest supported by the language team. | |||
| 2017-07-04 | remote: add keep-alive and references to the repository | Carlos Martín Nieto | |
| Especially in 1.8, the garbage collector can decide to finalize an object even as we are in one of its methods. This means it can free a remote while we're in one of its calls, as we're referencing the pointer inside the object, rather than the `Remote` itself. | |||
| 2017-05-20 | Merge pull request #376 from ankurmittal/short-hash | Carlos Martín Nieto | |
| Add support for getting short object Id | |||
| 2017-04-19 | Add support for getting short object Id | Ankur Mittal | |
| 2017-04-14 | Merge pull request #371 from libgit2/static-dynamic | Carlos Martín Nieto | |
| Allow building statically via the "static" build tag | |||
| 2017-04-14 | travis: build statically | Carlos Martín Nieto | |
| 2017-04-14 | Allow building statically via the "static" build tag | Carlos Martín Nieto | |
| 2017-04-14 | Merge pull request #366 from LinuxBozo/repository-open-flags | Carlos Martín Nieto | |
| Add new repository open flags | |||
| 2017-04-14 | Merge pull request #368 from cbguder/master | Carlos Martín Nieto | |
| Fix memory leak in Patch.String() | |||
| 2017-04-13 | Merge pull request #365 from AaronO/fix/memleak-tree-entrybyname | Carlos Martín Nieto | |
| Fix memleaks in Tree.EntryBy(Name/Path/Index), fixes #313 | |||
