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.

network/protocol: Deps-Borrowed where appropriate

Runxi Yu ce2c61a2 7a93df9a

+4
+2
network/protocol/pktline/decoder.go
··· 28 28 } 29 29 30 30 // NewDecoder creates a decoder over r. 31 + // 32 + // Labels: Deps-Borrowed. 31 33 func NewDecoder(r io.Reader, opts ReadOptions) *Decoder { 32 34 return &Decoder{ 33 35 r: r,
+2
network/protocol/sideband64k/decoder.go
··· 28 28 } 29 29 30 30 // NewDecoder creates a decoder over r. 31 + // 32 + // Labels: Deps-Borrowed. 31 33 func NewDecoder(r io.Reader, opts ReadOptions) *Decoder { 32 34 d := &Decoder{ 33 35 dec: pktline.NewDecoder(r, pktline.ReadOptions{}),