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/receivepack: Hook intolevel

Runxi Yu 5f0ec5fe 2e92bb68

+2 -4
+1 -2
network/receivepack/hook.go
··· 2 2 3 3 import ( 4 4 "context" 5 - "io" 6 5 7 6 "codeberg.org/lindenii/furgit/common/iowrap" 8 7 commitgraphread "codeberg.org/lindenii/furgit/format/commitgraph/read" ··· 14 13 15 14 type HookIO struct { 16 15 Progress iowrap.WriteFlusher 17 - Error io.Writer 16 + Error iowrap.WriteFlusher 18 17 } 19 18 20 19 // RefUpdate is one requested reference update presented to a receive-pack hook.
+1 -2
network/receivepack/service/hook.go
··· 2 2 3 3 import ( 4 4 "context" 5 - "io" 6 5 7 6 "codeberg.org/lindenii/furgit/common/iowrap" 8 7 commitgraphread "codeberg.org/lindenii/furgit/format/commitgraph/read" ··· 13 12 14 13 type HookIO struct { 15 14 Progress iowrap.WriteFlusher 16 - Error io.Writer 15 + Error iowrap.WriteFlusher 17 16 } 18 17 19 18 type RefUpdate struct {