summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-01-25merge: add two missing AnnotatedCommit methodsJosh Bleecher Snyder
2018-01-17Merge pull request #419 from libgit2/cmn/bump-libgit2Carlos Martín Nieto
Cmn/bump libgit2
2018-01-17diff: add two missing optionsCarlos Martín Nieto
2018-01-17Bump libgit2 to f1323d9cCarlos Martín Nieto
2017-10-16Merge pull request #413 from libgit2/cmn/master-staticCarlos Martín Nieto
README: master wants to use install-static
2017-10-16README: correct the branches in the testing blockCarlos Martín Nieto
2017-10-16README: master wants to use install-staticCarlos Martín Nieto
2017-10-03Merge pull request #411 from harsimranmaan/patch-1Carlos Martín Nieto
Fix typo in the error message
2017-10-01Fix typo in the error messageHarsimran Singh Maan
2017-09-29Merge pull request #409 from libgit2/cmn/bumpingCarlos Martín Nieto
Bump libgit2 to c7c5f2c4ec
2017-09-29patch: adjust to new function signatureCarlos Martín Nieto
2017-09-29Bump libgit2 to c7c5f2c4ecCarlos Martín Nieto
2017-09-03Merge pull request #398 from reujab/masterCarlos Martín Nieto
Fixed typos
2017-09-03Merge pull request #406 from libgit2/cmn/go19Carlos Martín Nieto
travis: include go 1.9
2017-09-03travis: include go 1.9Carlos Martín Nieto
2017-09-03travis: don't update submodules recursivelyCarlos Martín Nieto
We have invalid submodules for testing and Travis gets unhappy.
2017-09-03Go back to the v0.26 libgit2 releaseCarlos 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-03patch: correct a pointer typeCarlos Martín Nieto
2017-09-03clone_checkout_strategy removedMikołaj Baranowski
https://github.com/libgit2/libgit2/releases/tag/v0.26.0
2017-09-03Update vendored libgit2 to latestCarlos Martín Nieto
2017-07-11a MIT -> an MITreujab
2017-07-11fixed typosreujab
2017-07-09Merge pull request #397 from libgit2/cmn/tag-genericCarlos Martín Nieto
Tag any kind of object
2017-07-08tag: accept an Objecter for creating a tagCarlos Martín Nieto
This lets us create a tag for any kind of object.
2017-07-08Add Objecer interfaceCarlos 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-08Merge pull request #396 from libgit2/cmn/rebase-no-operationCarlos Martín Nieto
rebase: correct the return values for CurrentOperationIndex
2017-07-08rebase: correct the return values for CurrentOperationIndexCarlos 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-08Merge pull request #395 from libgit2/cmn/check-thread-lockCarlos Martín Nieto
Deduplicate Makefile static target and add thread locking check
2017-07-08Deduplicate Makefile static target and add thread locking checkCarlos Martín Nieto
It turns out we had been running CI without performing the thread locking check.
2017-07-08Merge pull request #393 from libgit2/cmn/keepalive-all-the-thingsCarlos Martín Nieto
KeepAlive all the things
2017-07-08Third round of keep-alive aditionsCarlos Martín Nieto
2017-07-08Second round of keep-alivesCarlos Martín Nieto
2017-07-08First round of mass keep-alive additionsCarlos Martín Nieto
2017-07-07commit: add keep-alives for those that need conversion to pointer receiversCarlos 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-07commit: add thread locking to signature extractionCarlos Martín Nieto
2017-07-06Merge pull request #389 from KatolaZ/masterCarlos Martín Nieto
Added Commit.ExtractSignature to wrap git_commit_extract_signature
2017-07-06Merge pull request #390 from libgit2/cmn/go-vetCarlos Martín Nieto
Fix a couple of issues reported by go-vet
2017-07-06Fix a couple of issues reported by go-vetCarlos Martín Nieto
2017-07-06Added Commit.ExtractSignature to wrap git_commit_extract_signatureKatolaZ
2017-07-04Merge pull request #387 from libgit2/cmn/remote-refsCarlos Martín Nieto
remote: add keep-alive and references to the repository
2017-07-04travis: update the Go versionsCarlos 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-04remote: add keep-alive and references to the repositoryCarlos 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-20Merge pull request #376 from ankurmittal/short-hashCarlos Martín Nieto
Add support for getting short object Id
2017-04-19Add support for getting short object IdAnkur Mittal
2017-04-14Merge pull request #371 from libgit2/static-dynamicCarlos Martín Nieto
Allow building statically via the "static" build tag
2017-04-14travis: build staticallyCarlos Martín Nieto
2017-04-14Allow building statically via the "static" build tagCarlos Martín Nieto
2017-04-14Merge pull request #366 from LinuxBozo/repository-open-flagsCarlos Martín Nieto
Add new repository open flags
2017-04-14Merge pull request #368 from cbguder/masterCarlos Martín Nieto
Fix memory leak in Patch.String()
2017-04-13Merge pull request #365 from AaronO/fix/memleak-tree-entrybynameCarlos Martín Nieto
Fix memleaks in Tree.EntryBy(Name/Path/Index), fixes #313