Thanks to visit codestin.com
Credit goes to chromium.googlesource.com

blob: 60f2261e415ad54a97c0278b4a1616c736e27ecf [file] [log] [blame]
Máximo Cuadrosa6197bd2017-01-31 22:09:281// A highly extensible git implementation in pure Go.
Máximo Cuadros579d1ac2016-02-16 12:22:252//
Máximo Cuadrosa6197bd2017-01-31 22:09:283// go-git aims to reach the completeness of libgit2 or jgit, nowadays covers the
4// majority of the plumbing read operations and some of the main write
5// operations, but lacks the main porcelain operations such as merges.
Máximo Cuadros86fa7612016-02-16 16:21:006//
Máximo Cuadrosa6197bd2017-01-31 22:09:287// It is highly extensible, we have been following the open/close principle in
8// its design to facilitate extensions, mainly focusing the efforts on the
9// persistence of the objects.
Máximo Cuadros5f4169f2017-03-13 04:48:0210package git // import "gopkg.in/src-d/go-git.v4"