repo
stringlengths
6
47
file_url
stringlengths
77
269
file_path
stringlengths
5
186
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-07 08:35:43
2026-01-07 08:55:24
truncated
bool
2 classes
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/iter.go
vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/iter.go
package merkletrie import ( "fmt" "io" "github.com/jesseduffield/go-git/v5/utils/merkletrie/internal/frame" "github.com/jesseduffield/go-git/v5/utils/merkletrie/noder" ) // Iter is an iterator for merkletries (only the trie part of the // merkletrie is relevant here, it does not use the Hasher interface). // // ...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/doubleiter.go
vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/doubleiter.go
package merkletrie import ( "fmt" "io" "github.com/jesseduffield/go-git/v5/utils/merkletrie/noder" ) // A doubleIter is a convenience type to keep track of the current // noders in two merkletries that are going to be iterated in parallel. // It has methods for: // // - iterating over the merkletries, both at the...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/difftree.go
vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/difftree.go
package merkletrie // The focus of this difftree implementation is to save time by // skipping whole directories if their hash is the same in both // trees. // // The diff algorithm implemented here is based on the doubleiter // type defined in this same package; we will iterate over both // trees at the same time, wh...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/doc.go
vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/doc.go
/* Package merkletrie provides support for n-ary trees that are at the same time Merkle trees and Radix trees (tries). Git trees are Radix n-ary trees in virtue of the names of their tree entries. At the same time, git trees are Merkle trees thanks to their hashes. This package defines Merkle tries as nodes that sho...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/index/node.go
vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/index/node.go
package index import ( "path" "strings" "github.com/jesseduffield/go-git/v5/plumbing/format/index" "github.com/jesseduffield/go-git/v5/utils/merkletrie/noder" ) // The node represents a index.Entry or a directory inferred from the path // of all entries. It implements the interface noder.Noder of merkletrie // p...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/noder/path.go
vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/noder/path.go
package noder import ( "bytes" "strings" ) // Path values represent a noder and its ancestors. The root goes first // and the actual final noder the path is referring to will be the last. // // A path implements the Noder interface, redirecting all the interface // calls to its final noder. // // Paths build from ...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/noder/noder.go
vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/noder/noder.go
// Package noder provide an interface for defining nodes in a // merkletrie, their hashes and their paths (a noders and its // ancestors). // // The hasher interface is easy to implement naively by elements that // already have a hash, like git blobs and trees. More sophisticated // implementations can implement the E...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/filesystem/node.go
vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/filesystem/node.go
package filesystem import ( "io" "os" "path" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/filemode" "github.com/jesseduffield/go-git/v5/utils/merkletrie/noder" "github.com/go-git/go-billy/v5" ) var ignore = map[string]bool{ ".git": true, } // The node represent...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/internal/frame/frame.go
vendor/github.com/jesseduffield/go-git/v5/utils/merkletrie/internal/frame/frame.go
package frame import ( "bytes" "fmt" "sort" "strings" "github.com/jesseduffield/go-git/v5/utils/merkletrie/noder" ) // A Frame is a collection of siblings in a trie, sorted alphabetically // by name. type Frame struct { // siblings, sorted in reverse alphabetical order by name stack []noder.Noder } type byNa...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/binary/write.go
vendor/github.com/jesseduffield/go-git/v5/utils/binary/write.go
package binary import ( "encoding/binary" "io" ) // Write writes the binary representation of data into w, using BigEndian order // https://golang.org/pkg/encoding/binary/#Write func Write(w io.Writer, data ...interface{}) error { for _, v := range data { if err := binary.Write(w, binary.BigEndian, v); err != ni...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/binary/read.go
vendor/github.com/jesseduffield/go-git/v5/utils/binary/read.go
// Package binary implements syntax-sugar functions on top of the standard // library binary package package binary import ( "bufio" "encoding/binary" "io" "github.com/jesseduffield/go-git/v5/plumbing" ) // Read reads structured binary data from r into data. Bytes are read and // decoded in BigEndian order // ht...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/ioutil/common.go
vendor/github.com/jesseduffield/go-git/v5/utils/ioutil/common.go
// Package ioutil implements some I/O utility functions. package ioutil import ( "bufio" "context" "errors" "io" ctxio "github.com/jbenet/go-context/io" ) type readPeeker interface { io.Reader Peek(int) ([]byte, error) } var ( ErrEmptyReader = errors.New("reader is empty") ) // NonEmptyReader takes a reade...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/sync/zlib.go
vendor/github.com/jesseduffield/go-git/v5/utils/sync/zlib.go
package sync import ( "bytes" "compress/zlib" "io" "sync" ) var ( zlibInitBytes = []byte{0x78, 0x9c, 0x01, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01} zlibReader = sync.Pool{ New: func() interface{} { r, _ := zlib.NewReader(bytes.NewReader(zlibInitBytes)) return ZLibReader{ Reader: r.(zlibRea...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/sync/bufio.go
vendor/github.com/jesseduffield/go-git/v5/utils/sync/bufio.go
package sync import ( "bufio" "io" "sync" ) var bufioReader = sync.Pool{ New: func() interface{} { return bufio.NewReader(nil) }, } // GetBufioReader returns a *bufio.Reader that is managed by a sync.Pool. // Returns a bufio.Reader that is reset with reader and ready for use. // // After use, the *bufio.Reade...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/utils/sync/bytes.go
vendor/github.com/jesseduffield/go-git/v5/utils/sync/bytes.go
package sync import ( "bytes" "sync" ) var ( byteSlice = sync.Pool{ New: func() interface{} { b := make([]byte, 16*1024) return &b }, } bytesBuffer = sync.Pool{ New: func() interface{} { return bytes.NewBuffer(nil) }, } ) // GetByteSlice returns a *[]byte that is managed by a sync.Pool. // The...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/internal/path_util/path_util.go
vendor/github.com/jesseduffield/go-git/v5/internal/path_util/path_util.go
package path_util import ( "os" "os/user" "strings" ) func ReplaceTildeWithHome(path string) (string, error) { if strings.HasPrefix(path, "~") { firstSlash := strings.Index(path, "/") if firstSlash == 1 { home, err := os.UserHomeDir() if err != nil { return path, err } return strings.Replace(p...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/internal/revision/parser.go
vendor/github.com/jesseduffield/go-git/v5/internal/revision/parser.go
// Package revision extracts git revision from string // More information about revision : https://www.kernel.org/pub/software/scm/git/docs/gitrevisions.html package revision import ( "bytes" "fmt" "io" "regexp" "strconv" "time" ) // ErrInvalidRevision is emitted if string doesn't match valid revision type ErrI...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/internal/revision/token.go
vendor/github.com/jesseduffield/go-git/v5/internal/revision/token.go
package revision // token represents a entity extracted from string parsing type token int const ( eof token = iota aslash asterisk at caret cbrace colon control dot emark minus number obrace obracket qmark slash space tilde tokenError word )
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/internal/revision/scanner.go
vendor/github.com/jesseduffield/go-git/v5/internal/revision/scanner.go
package revision import ( "bufio" "io" "unicode" ) // runeCategoryValidator takes a rune as input and // validates it belongs to a rune category type runeCategoryValidator func(r rune) bool // tokenizeExpression aggregates a series of runes matching check predicate into a single // string and provides given token...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/internal/url/url.go
vendor/github.com/jesseduffield/go-git/v5/internal/url/url.go
package url import ( "regexp" ) var ( isSchemeRegExp = regexp.MustCompile(`^[^:]+://`) // Ref: https://github.com/git/git/blob/master/Documentation/urls.txt#L37 scpLikeUrlRegExp = regexp.MustCompile(`^(?:(?P<user>[^@]+)@)?(?P<host>[^:\s]+):(?:(?P<port>[0-9]{1,5}):)?(?P<path>[^\\].*)$`) ) // MatchesScheme return...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/config/modules.go
vendor/github.com/jesseduffield/go-git/v5/config/modules.go
package config import ( "bytes" "errors" "regexp" format "github.com/jesseduffield/go-git/v5/plumbing/format/config" ) var ( ErrModuleEmptyURL = errors.New("module config: empty URL") ErrModuleEmptyPath = errors.New("module config: empty path") ErrModuleBadPath = errors.New("submodule has an invalid path")...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/config/config.go
vendor/github.com/jesseduffield/go-git/v5/config/config.go
// Package config contains the abstraction of multiple config files package config import ( "bytes" "errors" "fmt" "io" "os" "path/filepath" "sort" "strconv" "github.com/go-git/go-billy/v5/osfs" "github.com/jesseduffield/go-git/v5/internal/url" "github.com/jesseduffield/go-git/v5/plumbing" format "github....
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/config/url.go
vendor/github.com/jesseduffield/go-git/v5/config/url.go
package config import ( "errors" "strings" format "github.com/jesseduffield/go-git/v5/plumbing/format/config" ) var ( errURLEmptyInsteadOf = errors.New("url config: empty insteadOf") ) // Url defines Url rewrite rules type URL struct { // Name new base url Name string // Any URL that starts with this value w...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/config/branch.go
vendor/github.com/jesseduffield/go-git/v5/config/branch.go
package config import ( "errors" "strings" "github.com/jesseduffield/go-git/v5/plumbing" format "github.com/jesseduffield/go-git/v5/plumbing/format/config" ) var ( errBranchEmptyName = errors.New("branch config: empty name") errBranchInvalidMerge = errors.New("branch config: invalid merge") errBranchInva...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/config/refspec.go
vendor/github.com/jesseduffield/go-git/v5/config/refspec.go
package config import ( "errors" "strings" "github.com/jesseduffield/go-git/v5/plumbing" ) const ( refSpecWildcard = "*" refSpecForce = "+" refSpecSeparator = ":" refSpecNegative = "^" ) var ( ErrRefSpecMalformedSeparator = errors.New("malformed refspec, separators are wrong") ErrRefSpecMalformedWild...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/error.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/error.go
package plumbing import "fmt" type PermanentError struct { Err error } func NewPermanentError(err error) *PermanentError { if err == nil { return nil } return &PermanentError{Err: err} } func (e *PermanentError) Error() string { return fmt.Sprintf("permanent client error: %s", e.Err.Error()) } type Unexpec...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/revision.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/revision.go
package plumbing // Revision represents a git revision // to get more details about git revisions // please check git manual page : // https://www.kernel.org/pub/software/scm/git/docs/gitrevisions.html type Revision string func (r Revision) String() string { return string(r) }
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/memory.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/memory.go
package plumbing import ( "bytes" "io" ) // MemoryObject on memory Object implementation type MemoryObject struct { t ObjectType h Hash cont []byte sz int64 } // Hash returns the object Hash, the hash is calculated on-the-fly the first // time it's called, in all subsequent calls the same Hash is retur...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/hash.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/hash.go
package plumbing import ( "bytes" "encoding/hex" "sort" "strconv" "github.com/jesseduffield/go-git/v5/plumbing/hash" ) // Hash SHA1 hashed content type Hash [hash.Size]byte // ZeroHash is Hash with value zero var ZeroHash Hash // ComputeHash compute the hash for a given ObjectType and content func ComputeHash...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object.go
// package plumbing implement the core interfaces and structs used by go-git package plumbing import ( "errors" "io" ) var ( ErrObjectNotFound = errors.New("object not found") // ErrInvalidType is returned when an invalid object type is provided. ErrInvalidType = errors.New("invalid object type") ) // Object is...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/reference.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/reference.go
package plumbing import ( "errors" "fmt" "regexp" "strings" ) const ( refPrefix = "refs/" refHeadPrefix = refPrefix + "heads/" refTagPrefix = refPrefix + "tags/" refRemotePrefix = refPrefix + "remotes/" refNotePrefix = refPrefix + "notes/" symrefPrefix = "ref: " ) // RefRevParseRules are a ...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/storer/storer.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/storer/storer.go
package storer // Storer is a basic storer for encoded objects and references. type Storer interface { EncodedObjectStorer ReferenceStorer } // Initializer should be implemented by storers that require to perform any // operation when creating a new repository (i.e. git init). type Initializer interface { // Init ...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/storer/index.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/storer/index.go
package storer import "github.com/jesseduffield/go-git/v5/plumbing/format/index" // IndexStorer generic storage of index.Index type IndexStorer interface { SetIndex(*index.Index) error Index() (*index.Index, error) }
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/storer/object.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/storer/object.go
package storer import ( "errors" "io" "time" "github.com/jesseduffield/go-git/v5/plumbing" ) var ( //ErrStop is used to stop a ForEach function in an Iter ErrStop = errors.New("stop iter") ) // EncodedObjectStorer generic storage of objects type EncodedObjectStorer interface { // NewEncodedObject returns a n...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/storer/doc.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/storer/doc.go
// Package storer defines the interfaces to store objects, references, etc. package storer
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/storer/shallow.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/storer/shallow.go
package storer import "github.com/jesseduffield/go-git/v5/plumbing" // ShallowStorer is a storage of references to shallow commits by hash, // meaning that these commits have missing parents because of a shallow fetch. type ShallowStorer interface { SetShallow([]plumbing.Hash) error Shallow() ([]plumbing.Hash, erro...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/storer/reference.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/storer/reference.go
package storer import ( "errors" "io" "github.com/jesseduffield/go-git/v5/plumbing" ) const MaxResolveRecursion = 1024 // ErrMaxResolveRecursion is returned by ResolveReference is MaxResolveRecursion // is exceeded var ErrMaxResolveRecursion = errors.New("max. recursion level reached") // ReferenceStorer is a g...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/hash/hash_sha256.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/hash/hash_sha256.go
//go:build sha256 // +build sha256 package hash import "crypto" const ( // CryptoType defines what hash algorithm is being used. CryptoType = crypto.SHA256 // Size defines the amount of bytes the hash yields. Size = 32 // HexSize defines the strings size of the hash when represented in hexadecimal. HexSize = 6...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/hash/hash.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/hash/hash.go
// package hash provides a way for managing the // underlying hash implementations used across go-git. package hash import ( "crypto" "fmt" "hash" "github.com/pjbgf/sha1cd" ) // algos is a map of hash algorithms. var algos = map[crypto.Hash]func() hash.Hash{} func init() { reset() } // reset resets the defaul...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/hash/hash_sha1.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/hash/hash_sha1.go
//go:build !sha256 // +build !sha256 package hash import "crypto" const ( // CryptoType defines what hash algorithm is being used. CryptoType = crypto.SHA1 // Size defines the amount of bytes the hash yields. Size = 20 // HexSize defines the strings size of the hash when represented in hexadecimal. HexSize = 4...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/cache/buffer_lru.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/cache/buffer_lru.go
package cache import ( "container/list" "sync" ) // BufferLRU implements an object cache with an LRU eviction policy and a // maximum size (measured in object size). type BufferLRU struct { MaxSize FileSize actualSize FileSize ll *list.List cache map[int64]*list.Element mut sync.Mutex } /...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/cache/object_lru.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/cache/object_lru.go
package cache import ( "container/list" "sync" "github.com/jesseduffield/go-git/v5/plumbing" ) // ObjectLRU implements an object cache with an LRU eviction policy and a // maximum size (measured in object size). type ObjectLRU struct { MaxSize FileSize actualSize FileSize ll *list.List cache map...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/cache/common.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/cache/common.go
package cache import "github.com/jesseduffield/go-git/v5/plumbing" const ( Byte FileSize = 1 << (iota * 10) KiByte MiByte GiByte ) type FileSize int64 const DefaultMaxSize FileSize = 96 * MiByte // Object is an interface to a object cache. type Object interface { // Put puts the given object into the cache. W...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/revlist/revlist.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/revlist/revlist.go
// Package revlist provides support to access the ancestors of commits, in a // similar way as the git-rev-list command. package revlist import ( "fmt" "io" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/filemode" "github.com/jesseduffield/go-git/v5/plumbing/object" "...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/tree.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/tree.go
package object import ( "context" "errors" "fmt" "io" "path" "path/filepath" "sort" "strings" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/filemode" "github.com/jesseduffield/go-git/v5/plumbing/storer" "github.com/jesseduffield/go-git/v5/utils/ioutil" "github...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit.go
package object import ( "bytes" "context" "errors" "fmt" "io" "strings" "github.com/ProtonMail/go-crypto/openpgp" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/storer" "github.com/jesseduffield/go-git/v5/utils/ioutil" "github.com/jesseduffield/go-git/v5/utils/s...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/file.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/file.go
package object import ( "bytes" "io" "strings" "github.com/jesseduffield/go-git/v5/plumbing/filemode" "github.com/jesseduffield/go-git/v5/plumbing/storer" "github.com/jesseduffield/go-git/v5/utils/binary" "github.com/jesseduffield/go-git/v5/utils/ioutil" ) // File represents git file objects. type File struct...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/change_adaptor.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/change_adaptor.go
package object import ( "errors" "fmt" "github.com/jesseduffield/go-git/v5/utils/merkletrie" "github.com/jesseduffield/go-git/v5/utils/merkletrie/noder" ) // The following functions transform changes types form the merkletrie // package to changes types from this package. func newChange(c merkletrie.Change) (*C...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/merge_base.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/merge_base.go
package object import ( "fmt" "sort" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/storer" ) // errIsReachable is thrown when first commit is an ancestor of the second var errIsReachable = fmt.Errorf("first is reachable from second") // MergeBase mimics the behavior ...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit_walker_ctime.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit_walker_ctime.go
package object import ( "io" "github.com/emirpasic/gods/trees/binaryheap" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/storer" ) type commitIteratorByCTime struct { seenExternal map[plumbing.Hash]bool seen map[plumbing.Hash]bool heap *binaryheap.H...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/change.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/change.go
package object import ( "bytes" "context" "fmt" "strings" "github.com/jesseduffield/go-git/v5/utils/merkletrie" ) // Change values represent a detected change between two git trees. For // modifications, From is the original status of the node and To is its // final status. For insertions, From is the zero va...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit_walker_bfs_filtered.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit_walker_bfs_filtered.go
package object import ( "io" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/storer" ) // NewFilterCommitIter returns a CommitIter that walks the commit history, // starting at the passed commit and visiting its parents in Breadth-first order. // The commits returned by ...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit_walker_path.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit_walker_path.go
package object import ( "io" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/storer" ) type commitPathIter struct { pathFilter func(string) bool sourceIter CommitIter currentCommit *Commit checkParent bool } // NewCommitPathIterFromIter returns a commit iter...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit_walker_bfs.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit_walker_bfs.go
package object import ( "io" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/storer" ) type bfsCommitIterator struct { seenExternal map[plumbing.Hash]bool seen map[plumbing.Hash]bool queue []*Commit } // NewCommitIterBSF returns a CommitIter that walks...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/tag.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/tag.go
package object import ( "bytes" "fmt" "io" "strings" "github.com/ProtonMail/go-crypto/openpgp" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/storer" "github.com/jesseduffield/go-git/v5/utils/ioutil" "github.com/jesseduffield/go-git/v5/utils/sync" ) // Tag represe...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/difftree.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/difftree.go
package object import ( "bytes" "context" "github.com/jesseduffield/go-git/v5/utils/merkletrie" "github.com/jesseduffield/go-git/v5/utils/merkletrie/noder" ) // DiffTree compares the content and mode of the blobs found via two // tree objects. // DiffTree does not perform rename detection, use DiffTreeWithOption...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/rename.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/rename.go
package object import ( "errors" "io" "sort" "strings" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/filemode" "github.com/jesseduffield/go-git/v5/utils/ioutil" "github.com/jesseduffield/go-git/v5/utils/merkletrie" ) // DetectRenames detects the renames in the giv...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/treenoder.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/treenoder.go
package object import ( "io" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/filemode" "github.com/jesseduffield/go-git/v5/utils/merkletrie/noder" ) // A treenoder is a helper type that wraps git trees into merkletrie // noders. // // As a merkletrie noder doesn't under...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/object.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/object.go
// Package object contains implementations of all Git objects and utility // functions to work with them. package object import ( "bytes" "errors" "fmt" "io" "strconv" "time" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/storer" ) // ErrUnsupportedObject trigger w...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/patch.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/patch.go
package object import ( "bytes" "context" "errors" "fmt" "io" "strconv" "strings" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/filemode" fdiff "github.com/jesseduffield/go-git/v5/plumbing/format/diff" "github.com/jesseduffield/go-git/v5/utils/diff" dmp "githu...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit_walker_limit.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit_walker_limit.go
package object import ( "io" "time" "github.com/jesseduffield/go-git/v5/plumbing/storer" ) type commitLimitIter struct { sourceIter CommitIter limitOptions LogLimitOptions } type LogLimitOptions struct { Since *time.Time Until *time.Time } func NewCommitLimitIterFromIter(commitIter CommitIter, limitOption...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit_walker.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/commit_walker.go
package object import ( "container/list" "io" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/storer" "github.com/jesseduffield/go-git/v5/storage" ) type commitPreIterator struct { seenExternal map[plumbing.Hash]bool seen map[plumbing.Hash]bool stack ...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/blob.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/blob.go
package object import ( "io" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/storer" "github.com/jesseduffield/go-git/v5/utils/ioutil" ) // Blob is used to store arbitrary data - it is generally a file. type Blob struct { // Hash of the blob. Hash plumbing.Hash // Si...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/object/signature.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/object/signature.go
package object import "bytes" const ( signatureTypeUnknown signatureType = iota signatureTypeOpenPGP signatureTypeX509 signatureTypeSSH ) var ( // openPGPSignatureFormat is the format of an OpenPGP signature. openPGPSignatureFormat = signatureFormat{ []byte("-----BEGIN PGP SIGNATURE-----"), []byte("-----BE...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/filemode/filemode.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/filemode/filemode.go
package filemode import ( "encoding/binary" "fmt" "os" "strconv" ) // A FileMode represents the kind of tree entries used by git. It // resembles regular file systems modes, although FileModes are // considerably simpler (there are not so many), and there are some, // like Submodule that has no file system equiva...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/idxfile/writer.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/idxfile/writer.go
package idxfile import ( "bytes" "fmt" "math" "sort" "sync" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/utils/binary" ) // objects implements sort.Interface and uses hash as sorting key. type objects []Entry // Writer implements a packfile Observer interface and is used ...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/idxfile/decoder.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/idxfile/decoder.go
package idxfile import ( "bufio" "bytes" "errors" "io" "github.com/jesseduffield/go-git/v5/plumbing/hash" "github.com/jesseduffield/go-git/v5/utils/binary" ) var ( // ErrUnsupportedVersion is returned by Decode when the idx file version // is not supported. ErrUnsupportedVersion = errors.New("unsupported ve...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/idxfile/idxfile.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/idxfile/idxfile.go
package idxfile import ( "bytes" "io" "sort" encbin "encoding/binary" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/hash" ) const ( // VersionSupported is the only idx version supported. VersionSupported = 2 noMapping = -1 ) var ( idxHeader = []byte{255, 't',...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/idxfile/doc.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/idxfile/doc.go
// Package idxfile implements encoding and decoding of packfile idx files. // // == Original (version 1) pack-*.idx files have the following format: // // - The header consists of 256 4-byte network byte order // integers. N-th entry of this table records the number of // objects in the corresponding pac...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/idxfile/encoder.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/idxfile/encoder.go
package idxfile import ( "io" "github.com/jesseduffield/go-git/v5/plumbing/hash" "github.com/jesseduffield/go-git/v5/utils/binary" ) // Encoder writes MemoryIndex structs to an output stream. type Encoder struct { io.Writer hash hash.Hash } // NewEncoder returns a new stream encoder that writes to w. func NewE...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/index/match.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/index/match.go
package index import ( "path/filepath" "runtime" "unicode/utf8" ) // match is filepath.Match with support to match fullpath and not only filenames // code from: // https://github.com/golang/go/blob/39852bf4cce6927e01d0136c7843f65a801738cb/src/path/filepath/match.go#L44-L224 func match(pattern, name string) (matche...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/index/index.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/index/index.go
package index import ( "bytes" "errors" "fmt" "path/filepath" "strings" "time" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/filemode" ) var ( // ErrUnsupportedVersion is returned by Decode when the index file version // is not supported. ErrUnsupportedVersion ...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/index/decoder.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/index/decoder.go
package index import ( "bufio" "bytes" "errors" "io" "strconv" "time" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/hash" "github.com/jesseduffield/go-git/v5/utils/binary" ) var ( // DecodeVersionSupported is the range of supported index versions DecodeVersion...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/index/doc.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/index/doc.go
// Package index implements encoding and decoding of index format files. // // Git index format // ================ // // == The Git index file has the following format // // All binary numbers are in network byte order. Version 2 is described // here unless stated otherwise. // // - A 12-byte h...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/index/encoder.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/index/encoder.go
package index import ( "bytes" "errors" "fmt" "io" "path" "sort" "strings" "time" "github.com/jesseduffield/go-git/v5/plumbing/hash" "github.com/jesseduffield/go-git/v5/utils/binary" ) var ( // EncodeVersionSupported is the range of supported index versions EncodeVersionSupported uint32 = 4 // ErrInval...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/objfile/writer.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/objfile/writer.go
package objfile import ( "compress/zlib" "errors" "io" "strconv" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/utils/sync" ) var ( ErrOverflow = errors.New("objfile: declared data length exceeded (overflow)") ) // Writer writes and encodes data in compressed objfile format...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/objfile/reader.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/objfile/reader.go
package objfile import ( "errors" "io" "strconv" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/format/packfile" "github.com/jesseduffield/go-git/v5/utils/sync" ) var ( ErrClosed = errors.New("objfile: already closed") ErrHeader = errors.New("objfile: i...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/objfile/doc.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/objfile/doc.go
// Package objfile implements encoding and decoding of object files. package objfile
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/pktline/error.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/pktline/error.go
package pktline import ( "bytes" "errors" "io" "strings" ) var ( // ErrInvalidErrorLine is returned by Decode when the packet line is not an // error line. ErrInvalidErrorLine = errors.New("expected an error-line") errPrefix = []byte("ERR ") ) // ErrorLine is a packet line that contains an error message. //...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/pktline/scanner.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/pktline/scanner.go
package pktline import ( "bytes" "errors" "io" "strings" "github.com/jesseduffield/go-git/v5/utils/trace" ) const ( lenSize = 4 ) // ErrInvalidPktLen is returned by Err() when an invalid pkt-len is found. var ErrInvalidPktLen = errors.New("invalid pkt-len found") // Scanner provides a convenient interface fo...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/pktline/encoder.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/pktline/encoder.go
// Package pktline implements reading payloads form pkt-lines and encoding // pkt-lines from payloads. package pktline import ( "bytes" "errors" "fmt" "io" "github.com/jesseduffield/go-git/v5/utils/trace" ) // An Encoder writes pkt-lines to an output stream. type Encoder struct { w io.Writer } const ( // Max...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/diff/colorconfig.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/diff/colorconfig.go
package diff import "github.com/jesseduffield/go-git/v5/plumbing/color" // A ColorKey is a key into a ColorConfig map and also equal to the key in the // diff.color subsection of the config. See // https://github.com/git/git/blob/v2.26.2/diff.c#L83-L106. type ColorKey string // ColorKeys. const ( Context ...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/diff/patch.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/diff/patch.go
package diff import ( "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/filemode" ) // Operation defines the operation of a diff item. type Operation int const ( // Equal item represents an equals diff. Equal Operation = iota // Add item represents an insert diff. Add ...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/diff/unified_encoder.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/diff/unified_encoder.go
package diff import ( "fmt" "io" "regexp" "strconv" "strings" "github.com/jesseduffield/go-git/v5/plumbing" ) // DefaultContextLines is the default number of context lines. const DefaultContextLines = 3 var ( splitLinesRegexp = regexp.MustCompile(`[^\n]*(\n|$)`) operationChar = map[Operation]byte{ Add: ...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/gitignore/pattern.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/gitignore/pattern.go
package gitignore import ( "path/filepath" "strings" ) // MatchResult defines outcomes of a match, no match, exclusion or inclusion. type MatchResult int const ( // NoMatch defines the no match outcome of a match check NoMatch MatchResult = iota // Exclude defines an exclusion of a file as a result of a match c...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/gitignore/matcher.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/gitignore/matcher.go
package gitignore // Matcher defines a global multi-pattern matcher for gitignore patterns type Matcher interface { // Match matches patterns in the order of priorities. As soon as an inclusion or // exclusion is found, not further matching is performed. Match(path []string, isDir bool) bool } // NewMatcher constr...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/gitignore/doc.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/gitignore/doc.go
// Package gitignore implements matching file system paths to gitignore patterns that // can be automatically read from a git repository tree in the order of definition // priorities. It support all pattern formats as specified in the original gitignore // documentation, copied below: // // Pattern format // ======...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/gitignore/dir.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/gitignore/dir.go
package gitignore import ( "bufio" "bytes" "io" "os" "strings" "github.com/go-git/go-billy/v5" "github.com/jesseduffield/go-git/v5/internal/path_util" "github.com/jesseduffield/go-git/v5/plumbing/format/config" gioutil "github.com/jesseduffield/go-git/v5/utils/ioutil" ) const ( commentPrefix = "#" coreS...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/delta_selector.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/delta_selector.go
package packfile import ( "sort" "sync" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/storer" ) const ( // deltas based on deltas, how many steps we can do. // 50 is the default value used in JGit maxDepth = int64(50) ) // applyDelta is the set of object types tha...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/parser.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/parser.go
package packfile import ( "bytes" "errors" "fmt" "io" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/cache" "github.com/jesseduffield/go-git/v5/plumbing/storer" "github.com/jesseduffield/go-git/v5/utils/ioutil" "github.com/jesseduffield/go-git/v5/utils/sync" ) var...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/error.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/error.go
package packfile import "fmt" // Error specifies errors returned during packfile parsing. type Error struct { reason, details string } // NewError returns a new error. func NewError(reason string) *Error { return &Error{reason: reason} } // Error returns a text representation of the error. func (e *Error) Error()...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/diff_delta.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/diff_delta.go
package packfile import ( "bytes" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/utils/ioutil" "github.com/jesseduffield/go-git/v5/utils/sync" ) // See https://github.com/jelmer/dulwich/blob/master/dulwich/pack.py and // https://github.com/tarruda/node-git-core/blob/master/src/...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/patch_delta.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/patch_delta.go
package packfile import ( "bufio" "bytes" "errors" "fmt" "io" "math" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/utils/ioutil" "github.com/jesseduffield/go-git/v5/utils/sync" ) // See https://github.com/git/git/blob/49fa3dc76179e04b0833542fa52d0f287a4955ac/delta.h // ht...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/object_pack.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/object_pack.go
package packfile import ( "github.com/jesseduffield/go-git/v5/plumbing" ) // ObjectToPack is a representation of an object that is going to be into a // pack file. type ObjectToPack struct { // The main object to pack, it could be any object, including deltas Object plumbing.EncodedObject // Base is the object th...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/fsobject.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/fsobject.go
package packfile import ( "io" billy "github.com/go-git/go-billy/v5" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/cache" "github.com/jesseduffield/go-git/v5/plumbing/format/idxfile" "github.com/jesseduffield/go-git/v5/utils/ioutil" ) // FSObject is an object from t...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/scanner.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/scanner.go
package packfile import ( "bufio" "bytes" "fmt" "hash" "hash/crc32" "io" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/utils/binary" "github.com/jesseduffield/go-git/v5/utils/ioutil" "github.com/jesseduffield/go-git/v5/utils/sync" ) var ( // ErrEmptyPackfile is returned...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/delta_index.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/delta_index.go
package packfile const blksz = 16 const maxChainLength = 64 // deltaIndex is a modified version of JGit's DeltaIndex adapted to our current // design. type deltaIndex struct { table []int entries []int mask int } func (idx *deltaIndex) init(buf []byte) { scanner := newDeltaIndexScanner(buf, len(buf)) idx.m...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/packfile.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/packfile.go
package packfile import ( "bytes" "fmt" "io" "os" billy "github.com/go-git/go-billy/v5" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/cache" "github.com/jesseduffield/go-git/v5/plumbing/format/idxfile" "github.com/jesseduffield/go-git/v5/plumbing/storer" "github....
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/doc.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/doc.go
// Package packfile implements encoding and decoding of packfile format. // // == pack-*.pack files have the following format: // // - A header appears at the beginning and consists of the following: // // 4-byte signature: // The signature is: {'P', 'A', 'C', 'K'} // // 4-byte version number (ne...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false
jesseduffield/lazygit
https://github.com/jesseduffield/lazygit/blob/80dd695d7a8d32714603f5a6307f26f589802b1d/vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/encoder.go
vendor/github.com/jesseduffield/go-git/v5/plumbing/format/packfile/encoder.go
package packfile import ( "compress/zlib" "fmt" "io" "github.com/jesseduffield/go-git/v5/plumbing" "github.com/jesseduffield/go-git/v5/plumbing/hash" "github.com/jesseduffield/go-git/v5/plumbing/storer" "github.com/jesseduffield/go-git/v5/utils/binary" "github.com/jesseduffield/go-git/v5/utils/ioutil" ) // E...
go
MIT
80dd695d7a8d32714603f5a6307f26f589802b1d
2026-01-07T08:35:43.445894Z
false