go-git
go-git copied to clipboard
Project has been moved to: https://github.com/go-git/go-git
It would be nice if go-git can use the config specified in ~/.ssh/config file to figure out the Auth part of the Clone operation. `git` already supports this. ### Contents...
In `options.go` file there is the option to force for `pull` and `fetch` requests? Is there any reason why it is not implemented with `push` or just because it's a...
Right now go-git does not support the detection of renamed files in the tree comparison algorithm. We [want](https://github.com/src-d/lookout/issues/198) to implement this support under the following conditions: 1. Works identically to...
Please consider adding support for cloning repos with [LFS](https://git-lfs.github.com) objects. Thanks!
Hi there, I apologize ahead of time if this issue is not _directly_ related to a problem within this codebase, I'm unsure of the source of the problem I'm experiencing...
In https://godoc.org/gopkg.in/src-d/go-git.v4#example-Clone there's an example of cloning a repository and using memfs as the worktree. Is this possible with an existing bare git repository on disk, too? Alternatively, if I...
Hi, giving I have a repository with a bunch of files. When I use the library to clone the repo and run over the commits to get the latest and...
**Host**: Windows 10 **Go Version**: 1.10.1 windows/amd64 I am trying a simple flow - Init a new repository in a local folder - Clone that local repository to another location...
The [current code](https://github.com/src-d/go-git/blob/master/status.go#L48) uses: ```go path = fmt.Sprintf("%s -> %s", path, status.Extra) ``` But the [git documentation](https://git-scm.com/docs/git-status/2.24.0#_short_format) says it should be: > XY ORIG_PATH -> PATH So I would expect...