blob: 958e551e08e178c08f635f4d251bc1c860a8615b (
about) (
plain) (
blame)
1
2
3
4
5
6
7
8
|
package bloom
const (
// DataHeaderSize is the size of the BDAT header in commit-graph files.
DataHeaderSize = 3 * 4
// DefaultMaxChange matches Git's default max-changed-paths behavior.
DefaultMaxChange = 512
)
|