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.

at master 8 lines 228 B view raw
1package commitquery 2 3// loadByGraphPos populates one node from a commit-graph position. 4func (query *query) loadByGraphPos(idx nodeIndex) error { 5 pos := query.nodes[idx].graphPos 6 7 return query.loadCommitAtGraphPos(idx, pos) 8}