summaryrefslogtreecommitdiff
path: root/repository.go
AgeCommit message (Collapse)Author
2014-03-11merge with latestJesse Ezell
2014-03-07add blob chunk creation, creation of tree builders for specific trees, minor ↵Jesse Ezell
API cleanup
2014-02-28Fix an old error function call that snuck inCarlos Martín Nieto
2014-02-28fix bad merge (LastError -> MakeGitError)Jesse Ezell
2014-02-27Merge pull request #59 from libgit2/cmn/refsCarlos Martín Nieto
Add a few reference utility functions
2014-02-27Merge pull request #60 from libgit2/cmn/reflogs-defaultCarlos Martín Nieto
Allow for a default in reflog messages
2014-02-26Added git error code to the error object.Jesper Hansen
2014-02-26Remove 'oid' as id nameCarlos Martín Nieto
Following the cleanup from libgit2, let's not use 'oid' unless we mean the name of the data type. In the other cases, we mean an identifier, hence the name 'id'.
2014-02-26Allow for a default in reflog messagesCarlos Martín Nieto
We don't have a way to represent a NULL string, so if the user passes an empty string, let's pass NULL down so we tell libgit2 to use the default.
2014-02-26Add a few reference utility functionsCarlos Martín Nieto
2014-02-23Merge commit 'refs/pull/53/head' of github.com:libgit2/git2goCarlos Martín Nieto
On top: fix git_buf handling and rename signature This fixes #57, #54. Conflicts: git.go reference.go repository.go submodule.go
2014-01-29update git2go to support latest libgit2 development commit (id: 66af84)Aidan Nulman
2013-12-18Lock the OS thread when acessing errorsCarlos Martín Nieto
The library stores error information in thread-local storage, which means we need to make sure that the Go runtime doesn't switch OS threads between the time we call a function and th time we attempt to retrieve the error information.
2013-11-14Fix memleak for Config and parent commit objectsArtiom Di
2013-11-14Fix memleak, free TreeBuilderArtiom Di
2013-11-14Don't repeat the pkg-config lineCarlos Martín Nieto
This is only needed once per package. Having it on every file makes the build system ask about it n times, which is silly.
2013-09-12Camel-case constantsCarlos Martín Nieto
Make the names look more like what you'd expect from Go.
2013-06-13Merge pull request #13 from libgit2/polymorphism-take-2Vicent Martí
My take on polymorphism
2013-04-26Wrap git_repository_is_bareAxel Wagner
2013-04-16Add @carlosmn's testsVicent Marti
2013-04-16Take 2 on polymorphismVicent Marti
2013-03-19Implement SetWorkdirAxel Wagner
2013-03-07Delete the whole test dirCarlos Martín Nieto
2013-03-07Wrap immutable refsCarlos Martín Nieto
2013-03-06Add a couple of missing methods around BlobCarlos Martín Nieto
2013-03-06Sane names yoVicent Marti
2013-03-06Repository.PathVicent Marti
2013-03-06Repository.CreateCommitVicent Marti
2013-03-06Wrap git_indexCarlos Martín Nieto
2013-03-06Free Git objects via finalizers or manuallyCarlos Martín Nieto
Provide a manual way of freeing objects, but set finalizers for them in case the user does not want to worry about memory management, which would be useful for commits or trees, which sare typically small. When the objects are freed manually, the finalizer is unset to avoid double-freeing, mimicking what the go runtime does.
2013-03-05Bring back the RevWalkCarlos Martín Nieto
2013-03-05Initial commitVicent Marti