| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-23 | Merge commit 'refs/pull/53/head' of github.com:libgit2/git2go | Carlos 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-02-20 | Add Is$Type methods to Reference. | lye | |
| This patch adds the following methods to Reference: IsBranch() bool IsRemote() bool IsTag() bool which correspond to the `git_reference_is_$type` functions in libgit2. | |||
| 2014-01-29 | update git2go to support latest libgit2 development commit (id: 66af84) | Aidan Nulman | |
| 2014-01-26 | Remove unnecessary cast. | Claudiu-Vlad Ursache | |
| 2014-01-25 | Test for Odb hash function. | Claudiu-Vlad Ursache | |
| 2014-01-25 | Add Odb hash function. | Claudiu-Vlad Ursache | |
| 2014-01-24 | added write method | Tobias Haar | |
| 2013-12-18 | Merge pull request #41 from libgit2/cmn/threading | Carlos Martín Nieto | |
| Lock the OS thread when acessing errors | |||
| 2013-12-18 | Lock the OS thread when acessing errors | Carlos 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-18 | Merge pull request #47 from kron4eg/tree_builder_mem_leak | Vicent Martí | |
| Fix memleak, TreeBuilder, Config and Parent commit | |||
| 2013-11-14 | Fix memleak for Config and parent commit objects | Artiom Di | |
| 2013-11-14 | Fix memleak, free TreeBuilder | Artiom Di | |
| 2013-11-14 | ObjectType: capitalise Tag | Carlos Martín Nieto | |
| 2013-11-14 | Don't repeat the pkg-config line | Carlos 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-11-13 | Packbuilder: adjust to changes in dev | Carlos Martín Nieto | |
| 2013-10-30 | branch: Deleted BranchForeach | Johann Weging | |
| 2013-10-10 | branch:BranchForeach: Correct handling of the ListFlags | Johann Weging | |
| 2013-10-08 | branch: Renamed BranchLookup to LookupBrnach | Johann Weging | |
| 2013-10-08 | branch: Renamed BranchCreate to CreateBranch | Johann Weging | |
| 2013-10-08 | branch: Variable names don't repeat its type name any longer | Johann Weging | |
| 2013-10-08 | branch: Changed BranchT to BranchType | Johann Weging | |
| 2013-10-08 | branch: Implemented branch functions. | Johann Weging | |
| 2013-09-22 | Remove leftover reference to old const | Carlos Martín Nieto | |
| 2013-09-17 | Merge pull request #36 from libgit2/ref-iter | Vicent Martí | |
| reference: get references out of the iterator | |||
| 2013-09-17 | Merge pull request #38 from libgit2/odb-stream | Vicent Martí | |
| Wrap the odb streams | |||
| 2013-09-17 | Merge pull request #39 from libgit2/goify-consts | Vicent Martí | |
| Goify consts | |||
| 2013-09-12 | Give each const group a type | Carlos Martín Nieto | |
| This allows us to restrict which constants the compiler will allow through, and makes the sorting in the documentation better. | |||
| 2013-09-12 | Camel-case constants | Carlos Martín Nieto | |
| Make the names look more like what you'd expect from Go. | |||
| 2013-09-12 | Tree: add EntryByPath | Carlos Martín Nieto | |
| The more powerful version of EntryByName. | |||
| 2013-09-11 | Object types are constants | Carlos Martín Nieto | |
| Define the object type values as constants | |||
| 2013-09-11 | Wrap the odb streams | Carlos Martín Nieto | |
| The interface to these streams should be what you expect from Go, and both have Write and Close functions so they implement Reader/ReadCloser and Write/WriteCloser respectively. | |||
| 2013-09-09 | Add Filemode to TreeEntry | Carlos Martín Nieto | |
| This field was missing, so let's add it, and let's add the const definitions for the modes while we're here. | |||
| 2013-08-09 | reference: get references out of the iterator | Carlos Martín Nieto | |
| Allow getting references out of the iterator instead of just names. | |||
| 2013-07-22 | Submodule: adjust to the Default -> Reset change in the library | Carlos Martín Nieto | |
| 2013-06-17 | Reference: adjust to iterator changes | Carlos Martín Nieto | |
| The Library's iterators now can return either the reference or the reference's name. As the name is what we're set up for, rename the functions appropriately so we compile against altest development. | |||
| 2013-06-17 | Packbuilder: compilation fixes | Carlos Martín Nieto | |
| Don't name the return values, as they conflict with the names we want inside and the types don't match what we want to have inside. We need them to be two-way channels in the function, and then pass unidirectional references to the different functions. | |||
| 2013-06-13 | Merge pull request #13 from libgit2/polymorphism-take-2 | Vicent Martí | |
| My take on polymorphism | |||
| 2013-06-13 | Merge pull request #24 from carlosmn/packbuilder-abort | Vicent Martí | |
| Allow aborting the pack writing operation | |||
| 2013-06-13 | Merge pull request #25 from carlosmn/error-nil | Vicent Martí | |
| Catch nil error instances | |||
| 2013-06-13 | Merge pull request #26 from carlosmn/ref-iter | Vicent Martí | |
| Implement a reference iterator | |||
| 2013-06-13 | Merge pull request #31 from crosbymichael/master | Vicent Martí | |
| Add nil for optional arguments to git_packbuilder_write | |||
| 2013-06-13 | Merge pull request #29 from Merovius/parent | Vicent Martí | |
| Implement Parent()-functions for Commits | |||
| 2013-06-13 | Merge pull request #28 from Merovius/shorten | Vicent Martí | |
| Implement ShortenOids | |||
| 2013-06-13 | Merge pull request #27 from Merovius/odb_foreach | Vicent Martí | |
| Implement git_odb_foreach | |||
| 2013-06-07 | Add nil for optional parameters for pack_write | Michael Crosby | |
| The git_packbuilder_write function now takes two optional arguments used for information callbacks. These are currently not needed in the Go wrapper. | |||
| 2013-05-23 | Allow aborting the pack writing operation | Carlos Martín Nieto | |
| In case of an error in the writer, the packbuilder will stay around waiting for someone to read from its channel. The state associated with a packbuilder is non-trivial and it will keep a reference to the object, so the GC won't be able to free it. Change the ForEach interface to also return a "stop" channel. Closing the channel or writing into it will cause the first receive clause to act, making the callback to return -1, aborting the operation and ending the goroutine, freeing its hold on the packbuilder. | |||
| 2013-05-23 | Implement a reference iterator | Carlos Martín Nieto | |
| Wrap the reference iterators, and provide a Iter() function to get them through a channel. | |||
| 2013-05-22 | Support for index-entries | Axel Wagner | |
| 2013-05-21 | Implement Parent()-functions for Commits | Axel Wagner | |
| 2013-05-21 | Implement ShortenOids | Axel Wagner | |
