選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

doc.go 480B

12345678910
  1. // A highly extensible git implementation in pure Go.
  2. //
  3. // 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.
  6. //
  7. // 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.
  10. package git