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/{id,header,signature,type}: Update docs

Runxi Yu e4afe122 fef38441

+7 -4
+3
object/header/doc.go
··· 1 + // Package objectheader parses and serializes loose-object headers 2 + // ("type size\x00"). 3 + package objectheader
-1
object/header/parse.go
··· 1 - // Package objectheader parses and serializes object headers ("type size\0"). 2 1 package objectheader 3 2 4 3 import (
+2
object/id/doc.go
··· 1 + // Package objectid provides Git object IDs and object-ID hash algorithms. 2 + package objectid
-1
object/id/objectid.go
··· 1 - // Package objectid provides utilities around object IDs and hash algorithms. 2 1 package objectid 3 2 4 3 import (
+1 -1
object/signature/signature.go
··· 1 - // Package signature provides routines and representations that implement author/committer/tagger signatures. 1 + // Package signature provides Git author, committer, and tagger signatures. 2 2 package signature 3 3 4 4 // Signature represents a Git signature (author/committer/tagger).
+1 -1
object/type/objecttype.go
··· 1 - // Package objecttype provides object type constants and names. 1 + // Package objecttype provides Git object type tags and names. 2 2 package objecttype 3 3 4 4 // Type mirrors Git object type tags in packfiles.