gitea/vendor/gopkg.in/src-d/go-git.v4
Filip Navara 6e2a59e4ce Use commit graph files for listing pages (#7314)
* Experimental support for git commit graph files and bloom filter index

Signed-off-by: Filip Navara <filip.navara@gmail.com>

* Force vendor of commitgraph

Signed-off-by: Filip Navara <filip.navara@gmail.com>

* Remove bloom filter experiment and debug prints

* Remove old code for building commit graphs

* Remove unused function

* Remove mmap usage

* gofmt

* sort vendor/modules.txt

* Add copyright header and log commit-graph error
2019-07-02 10:15:14 +08:00
..
config update go-git to v4.12.0 - fixes #7248 (#7249) 2019-06-19 10:14:15 +08:00
internal [mod]: Bump gopkg.in/src-d/go-git.v4 from 4.8.0 to 4.10.0 (#6662) 2019-04-16 22:04:23 -04:00
plumbing Use commit graph files for listing pages (#7314) 2019-07-02 10:15:14 +08:00
storage update go-git to v4.12.0 - fixes #7248 (#7249) 2019-06-19 10:14:15 +08:00
utils update go-git to v4.12.0 - fixes #7248 (#7249) 2019-06-19 10:14:15 +08:00
.gitignore Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
.travis.yml update go git from v4.10.0 to v4.11.0 (#7096) 2019-05-31 20:34:46 +01:00
CODE_OF_CONDUCT.md Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
COMPATIBILITY.md update go-git to v4.12.0 - fixes #7248 (#7249) 2019-06-19 10:14:15 +08:00
CONTRIBUTING.md Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
DCO Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
LICENSE Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00
MAINTAINERS Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
Makefile Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
README.md Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
appveyor.yml Use Go1.11 module (#5743) 2019-03-27 19:15:23 +08:00
blame.go Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00
common.go Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00
doc.go Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00
go.mod update go-git to v4.12.0 - fixes #7248 (#7249) 2019-06-19 10:14:15 +08:00
go.sum update go-git to v4.12.0 - fixes #7248 (#7249) 2019-06-19 10:14:15 +08:00
object_walker.go Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00
options.go update go-git to v4.12.0 - fixes #7248 (#7249) 2019-06-19 10:14:15 +08:00
prune.go Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00
references.go Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00
remote.go update go-git to v4.12.0 - fixes #7248 (#7249) 2019-06-19 10:14:15 +08:00
repository.go update go-git to v4.12.0 - fixes #7248 (#7249) 2019-06-19 10:14:15 +08:00
status.go Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00
submodule.go Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00
worktree.go update go-git to v4.12.0 - fixes #7248 (#7249) 2019-06-19 10:14:15 +08:00
worktree_bsd.go Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00
worktree_commit.go Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00
worktree_linux.go Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00
worktree_status.go update go git from v4.10.0 to v4.11.0 (#7096) 2019-05-31 20:34:46 +01:00
worktree_unix_other.go Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00
worktree_windows.go Implement git refs API for listing references (branches, tags and other) (#5354) 2018-11-27 16:52:20 -05:00

README.md

go-git logo GoDoc Build Status Build status codecov.io Go Report Card

go-git is a highly extensible git implementation library written in pure Go.

It can be used to manipulate git repositories at low level (plumbing) or high level (porcelain), through an idiomatic Go API. It also supports several types of storage, such as in-memory filesystems, or custom implementations thanks to the Storer interface.

It's being actively developed since 2015 and is being used extensively by source{d} and Keybase, and by many other libraries and tools.

Comparison with git

go-git aims to be fully compatible with git, all the porcelain operations are implemented to work exactly as git does.

git is a humongous project with years of development by thousands of contributors, making it challenging for go-git to implement all the features. You can find a comparison of go-git vs git in the compatibility documentation.

Installation

The recommended way to install go-git is:

go get -u gopkg.in/src-d/go-git.v4/...

We use gopkg.in to version the API, this means that when go get clones the package, it's the latest tag matching v4.* that is cloned and not the master branch.

Examples

Please note that the CheckIfError and Info functions used in the examples are from the examples package just to be used in the examples.

Basic example

A basic example that mimics the standard git clone command

// Clone the given repository to the given directory
Info("git clone https://github.com/src-d/go-git")

_, err := git.PlainClone("/tmp/foo", false, &git.CloneOptions{
    URL:      "https://github.com/src-d/go-git",
    Progress: os.Stdout,
})

CheckIfError(err)

Outputs:

Counting objects: 4924, done.
Compressing objects: 100% (1333/1333), done.
Total 4924 (delta 530), reused 6 (delta 6), pack-reused 3533

In-memory example

Cloning a repository into memory and printing the history of HEAD, just like git log does

// Clones the given repository in memory, creating the remote, the local
// branches and fetching the objects, exactly as:
Info("git clone https://github.com/src-d/go-siva")

r, err := git.Clone(memory.NewStorage(), nil, &git.CloneOptions{
    URL: "https://github.com/src-d/go-siva",
})

CheckIfError(err)

// Gets the HEAD history from HEAD, just like this command:
Info("git log")

// ... retrieves the branch pointed by HEAD
ref, err := r.Head()
CheckIfError(err)


// ... retrieves the commit history
cIter, err := r.Log(&git.LogOptions{From: ref.Hash()})
CheckIfError(err)

// ... just iterates over the commits, printing it
err = cIter.ForEach(func(c *object.Commit) error {
	fmt.Println(c)
	return nil
})
CheckIfError(err)

Outputs:

commit ded8054fd0c3994453e9c8aacaf48d118d42991e
Author: Santiago M. Mola <santi@mola.io>
Date:   Sat Nov 12 21:18:41 2016 +0100

    index: ReadFrom/WriteTo returns IndexReadError/IndexWriteError. (#9)

commit df707095626f384ce2dc1a83b30f9a21d69b9dfc
Author: Santiago M. Mola <santi@mola.io>
Date:   Fri Nov 11 13:23:22 2016 +0100

    readwriter: fix bug when writing index. (#10)

    When using ReadWriter on an existing siva file, absolute offset for
    index entries was not being calculated correctly.
...

You can find this example and many others in the examples folder.

Contribute

Contributions are more than welcome, if you are interested please take a look to our Contributing Guidelines.

License

Apache License Version 2.0, see LICENSE