ref: c8dd7d3b44c93a664dddc0c4619d336c6e13d2a8
dir: /packfile/header.go/
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
}