summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-10-31Merge pull request #351 from ezwiebel/index-remove-directoryCarlos Martín Nieto
Implement git_index_remove_directory in index wrapper
2016-10-31Update to libgit2 a051ee3Carlos Martín Nieto
2016-10-20Implement git_index_remove_directory in index wrapperezwiebel
2016-10-08Merge remote-tracking branch 'upstream/v24' into remote-refinementsMirko Nosenzo
2016-10-08Remote Rename FixMirko Nosenzo
Problem string array is returned if no error is occurred
2016-10-03Merge pull request #345 from kdambekalns/commit-message-rawCarlos Martín Nieto
Add method to fetch raw commit message
2016-10-03Merge pull request #321 from netnose/checkout-callbacksCarlos Martín Nieto
Checkout callbacks
2016-10-03Merge pull request #322 from calavera/ssh_memory_credentialsCarlos Martín Nieto
Add NewCredSshKeyFromMemory to the credentials helpers.
2016-10-03Merge pull request #347 from geordie/masterCarlos Martín Nieto
Write index before writing index tree in seedTestRepo test helper
2016-10-03Merge pull request #341 from mdaffin/branchiterator-foreach-errorsCarlos Martín Nieto
Add check for ErrIterOver in BranchIterator.ForEach
2016-10-03Merge commit 'refs/pull/331/head' of github.com:libgit2/git2goCarlos Martín Nieto
2016-09-30odb & refdb: make New*BackendFromC take unsafe.Pointer as argument allowing ↵Mark Karpeles
argument to be set from different package
2016-09-16Write the index before writing the index tree in seedTestRepo test helper funcGeordie Henderson
2016-09-14Fix reference bug introduced with RebaseOptions implementationezwiebel
2016-09-13Add DefaultRebaseOptions() ↵ezwiebel
[git_rebase_init_options(GIT_REBASE_OPTIONS_VERSION)] service to wrapper
2016-09-12Add RebaseOpen() service to wrapperezwiebel
2016-09-09Add method to fetch raw commit messageKarsten Dambekalns
The existing `Commit.Message()` returns the trimmed commit message. In some cases it is important to retrieve the exact commit message, even if it contains surrounding newlines. This adds a new `Commit.RawMessage()` to be able to do that.
2016-09-05Add check for ErrIterOver in BranchIterator.ForEachMichael Daffin
The BranchIterator.ForEach currently returns the ErrIterOver error if no error had occured during the iteration. This leads to a rather unhelpful blank error message with the error code -31 when iterating over the branches. This commit adds a check for ErrIterOver at the end of the ForEach method so that the client code only has to worry about checking for nil as apose to checking for the ErrIterOver error.
2016-08-29Removes redundant iteration over check.Alan Johnson
2016-08-28Removed Useless Argument CheckMirko Nosenzo
2016-08-27Also remove a pkg-config directive that snuck inCarlos Martín Nieto
2016-08-27Bring back the Makefile from 'next'Carlos Martín Nieto
2016-08-27Merge remote-tracking branch 'upstream/master' into nextCarlos Martín Nieto
2016-08-27Merge pull request #336 from libgit2/cmn/test-parallelCarlos Martín Nieto
Run the tests in parallel
2016-08-27Merge pull request #337 from libgit2/cmn/go16-blob-pointerCarlos Martín Nieto
Work around the finnicky 1.6 CGo pointer checks
2016-08-27Add Go 1.7 to the build listCarlos Martín Nieto
2016-08-27Work around Go 1.6's CGo pointer checkCarlos Martín Nieto
It depends heavily on the expression at the call site an whether it can figure out whether we're using a slice or not, so provid an incantation that does this.
2016-08-27Remove unecessary copyCarlos Martín Nieto
2016-08-27Add test for slice-to-slice and GCo pointer detectionItamar Turner-Trauring
2016-08-27Merge pull request #320 from netnose/enum-mappingsCarlos Martín Nieto
Enum Mappings
2016-08-27Run the tests in parallelCarlos Martín Nieto
This saves about 1s, or 1/3 of the test runtime. The linking is still much slower, but this we can control.
2016-08-08Fix Free() service in Rebase wrapperezwiebel
2016-08-07Add CurrentOperationIndex() and OperationAt(index uint) services to wrapperezwiebel
2016-08-07Add Abort() service to wrapperezwiebel
2016-08-07Add operation OperationCount() service and enrich UTsezwiebel
2016-08-07Initial rebase wrapper versionezwiebel
2016-08-05Merge pull request #323 from Coderlane/diff_stats_stringCarlos Martín Nieto
Add DiffStats String
2016-08-05Update libgit2 to 73dab769Carlos Martín Nieto
This version reloads the index on checkout, which showed we were not persisting the updated index to disk and thus would have conflicts on checkout.
2016-08-04Fixing issue with error conversion.Alan Johnson
2016-07-24Merge pull request #328 from navytux/y/odb-typeCarlos Martín Nieto
odb: Expose git_odb_object_type() as OdbObject.Type()
2016-07-24Clone FixMirko Nosenzo
freeCheckoutOpts called twice
2016-07-19odb: Expose git_odb_object_type() as OdbObject.Type()Kirill Smelkov
It might be needed when one is writing `git cat-file --batch` equivalent which has output format <sha1> SP <type> SP <size> LF <contents> LF
2016-07-07Returning Problems on Remote RenameMirko Nosenzo
Problems can be returned as string array on RemoteCollection Rename
2016-07-06Merge pull request #318 from netnose/tag-removeCarlos Martín Nieto
Tag Remove
2016-07-06Merge pull request #317 from netnose/reset-defaultCarlos Martín Nieto
ResetDefaultToCommit maps git_reset_default
2016-06-25Checkout Payload Pointer FixMirko Nosenzo
- Tracking pointer once - Tracking pointer and not struct
2016-06-22Add NewCredSshKeyFromMemory to the credentials helpers.David Calavera
Allowing to use public and private keys from memory without reading them from disk and without using an ssh agent. Signed-off-by: David Calavera <[email protected]>
2016-06-19diff: Add DiffStats StringTravis Lane
This implements git_diff_stats_to_buf which provides the output for git diff --stats.
2016-05-29Checkout Callbacks Payload Check in Callback FunctionsMirko Nosenzo
Checking payloads in callback functions
2016-05-29Checkout Callbacks Payload CheckMirko Nosenzo
Checking payloads before using them