1#!/usr/bin/env bash
2
3# use //:.gitmessage as the commit message template
4git config --local commit.template ".gitmessage"
5
6# use a common, shared file as the default for running git-blame with the
7# `--ignore-revs` flag
8git config --local blame.ignoreRevsFile ".git-blame-ignore-revs"
9
10# enable features.manyFiles, which improves repository performance by setting
11# new values for several configuration options:
12# - `core.untrackedCache = true` enables the untracked cache
13# - `index.version = 4` enables path-prefix compression in the index
14# - `index.skipHash = true` speeds up index writes by not computing a trailing
15# checksum
16git config --local features.manyFiles true