diff options
Diffstat (limited to 'home/git/default.nix')
-rw-r--r-- | home/git/default.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/home/git/default.nix b/home/git/default.nix index a1f89bf..a761484 100644 --- a/home/git/default.nix +++ b/home/git/default.nix @@ -24,6 +24,11 @@ in { # See: https://git-scm.com/book/en/v2/Git-Tools-Submodules push.recurseSubmodules = "check"; + # It seems like a de facto standard to have a file with this name in the + # project root containing all the commits that should be ignored when + # running `git blame`. + blame.ignoreRevsFile = ".git-blame-ignore-revs"; + credential = { "https://github.com/" = { username = "linnnus"; |