shithub: furgit

ref: a902f6849d938a51fa34dc292f5c81d26c4b6c36
dir: /format/packfile/header.go/

View raw version
package packfile

// Signature is the 4-byte "PACK" magic at the start of pack files.
const Signature = 0x5041434b

// VersionSupported reports whether one pack version is supported.
func VersionSupported(version uint32) bool {
	return version == 2 || version == 3
}