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 102 go-git issues
Sort by recently updated
recently updated
newest added

When I try to stage changes to my `.gitmodules` file, then the `Worktree.Add()` method returns: ```console entry not found ```

Closes #1283 by adding a TODOs badge to the README. This PR adds a badge to the README which displays the number of TODO comments found in this repository's source...

Hi there! I wanted to propose adding the following badge to the README to indicate how many `// TODO` comments are in this codebase: [![TODOs](https://img.shields.io/endpoint?url=https://api.tickgit.com/badge?repo=github.com/src-d/go-git)](https://www.tickgit.com/browse?repo=github.com/src-d/go-git) The badge links to `tickgit.com`...

current `.gitignore` is only used for `worktree.Status()` add new API, `AddWithIgnore`, now we can use the patterns in `.gitignore` when add file

When a linked worktree's HEAD ref is a tracking-branch, this code will attempt to open the ref using the path in the `.git/worktree` which is not where the refs are...

Hi Everybody, I'm looking how to add push options to push git command, but I am not sure go-git support them. Looking to PushOptions in https://github.com/src-d/go-git/blob/master/options.go#L179 there is no attribute...

I am trying to create a new Repo through this API on bitbucket Following is the pseudocode ``` newRepoURL := "ssh://git@ourbitbucket:port/myproject/myApp.git" r, err := git.PlainInit(newRepoURL, false) w, err := r.Worktree()...

Hey, I am using this project for retrieve datas from a git local repository and I trying to do a range of commit between head commit and last created tag....

I want to create an empty branch but not connected to master (like orphan branch), where the first commit is unrelated to commits in master branch. These are the git...

reftable is a scalable format for the ref database. It would be nice to support it in go-git See https://github.com/eclipse/jgit/blob/master/Documentation/technical/reftable.md (I'm interested in working on this.)

enhancement