git2go
git2go copied to clipboard
Git to Go; bindings for libgit2. Like McDonald's but tastier.
__NOTE__: Reimplemented in #870 For http transport, perviously, an initial request without any credentials was being sent and upon unauthorized response, credentials were fetched and the request was retried with...
I am trying to use git2go to write an utility to do automatic merge, in the process of development I encountered a strange phenomenon and do not know how to...
This is a known issue because there is a missing symbol: ``` go get github.com/libgit2/git2go/v32 go: downloading github.com/libgit2/git2go/v32 v32.0.4 go: downloading github.com/libgit2/git2go v27.10.0+incompatible go: downloading golang.org/x/crypto v0.0.0-20201203163018-be400aefbc4c go: downloading golang.org/x/sys...
Does this package support git review?or Custom command? Thank you
This change allows debugging all the allocations performed by libgit2. To enable, set the environment variable `GIT2GO_DEBUG_ALLOCATOR_LOG=/tmp/git2go_alloc` and run the git2go program. Once the program exits, run the `./script/leak_detector.py` script,...
This creates a `RemoteDetached` type that is instantiable with a remote uri string. It has only one method, `LsDetached` for emulating `git ls-remote `. The reason for this is that...
Adds support and tests for all reflog functions listed on https://libgit2.org/libgit2/#HEAD/group/reflog. Closes #467
I'm using a vagrant box (with VirtualBox) inside a Windows 7 host. I cannot clone to a vboxsf filesystem using git2go . This is the code i'm using: ``` _,...
If I am wanting to do the git equivelent of: ``` git clean -fd git reset --hard git pull origin master ``` Whats the git2go equivelent? i cant seem to...
libgit2 provides support for reading and iterating over reflogs. However, git2go doesn't seem to provide this support. Is it possible this support could be added? My particular use case, if...