go-git icon indicating copy to clipboard operation
go-git copied to clipboard

Project has been moved to: https://github.com/go-git/go-git

Results 101 go-git issues
Sort by recently updated
recently updated
newest added

I'm using (more like, trying to use) this library to determine if certain files in a Git repository have been modified or not. This was my approach (error handling omitted...

Hey-hey, I tried to create following git command with go-git: `git diff --name-only --diff-filter=AM HEAD~5 HEAD -- .` At some point in my code I have a `Patch` and iterate...

Simple programming just running this on my repo that has many LFS files in it: ``` r, err := git.PlainOpen(*folder) CheckIfError(err) w, err := r.Worktree() CheckIfError(err) status, err := w.Status()...

This bug looks similar to #814 but affects `AddGlob` rather than `Add`. ## Reproduction Steps 1. Execute this code ```go repo, err := git.PlainInit("/some/dir", false) if err != nil {...

I am trying to figure out if the library supports the equivalent to "git ls-files 'pattern'" to get references to multiple files matching eg. a '*/foo' pattern (to find all...

enhancement

fixes by #1149 First, I updated the test case to reproduce the problem, and I will add a patch to fix this problem.

In the British TZ the following time: ``` 1579639200 +0100 ``` will be erroneously parsed as being with the GMT TZ. This leads to multiple errors with GPG validation. This...

Not all the tests pass yet but this makes go-git usable on Plan 9. Please merge this after https://github.com/src-d/go-billy/pull/78. Fixes #756 Signed-off-by: Fazlul Shahriar

Hey All, I am essentially trying to replicate this `git log` command in golang and can get most of the way there. Command looks something like this: ``` git log...

enhancement
help wanted
question
porcelain

…ssage Most commits have relatively small messages, so this was never noticeable. However, there are some repositories that have semi-automated messages that can get very large (e.g. github.com/riscv/riscv-clang and its...