mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-24 11:31:36 +01:00
6cff3b1cc7
Merge branch 'master' into vendor-migrate-go-git Merge branch 'master' into vendor-migrate-go-git migrate src-d/go-git -> go-git/go-git Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/128 Reviewed-by: techknowlogick <techknowlogick@gitea.io> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
11 lines
480 B
Go
11 lines
480 B
Go
// A highly extensible git implementation in pure Go.
|
|
//
|
|
// go-git aims to reach the completeness of libgit2 or jgit, nowadays covers the
|
|
// majority of the plumbing read operations and some of the main write
|
|
// operations, but lacks the main porcelain operations such as merges.
|
|
//
|
|
// It is highly extensible, we have been following the open/close principle in
|
|
// its design to facilitate extensions, mainly focusing the efforts on the
|
|
// persistence of the objects.
|
|
package git
|