Fast implementation of Git in pure Go codeberg.org/lindenii/furgit
git go
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

object: Update docs

Runxi Yu 271cfaca 4a08059f

+6 -1
+6 -1
object/object.go
··· 1 - // Package object provides shared object interfaces. 1 + // Package object provides the shared [Object] interface and parsing functions 2 + // for Git object values. 3 + // 4 + // Concrete object forms such as [blob], [tree], [commit], and [tag] live in 5 + // subpackages. Use [codeberg.org/lindenii/furgit/object/stored] when object 6 + // values need to be paired with the object IDs they were loaded under. 2 7 package object 3 8 4 9 import objecttype "codeberg.org/lindenii/furgit/object/type"