From e710f25b1632f8860816996e9992c8b96cba63eb Mon Sep 17 00:00:00 2001 From: RGBCube Date: Fri, 16 Feb 2024 22:29:07 +0300 Subject: [PATCH] Git fsckObjects all the time --- modules/git.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/git.nix b/modules/git.nix index 6aca1e4..e8a725c 100644 --- a/modules/git.nix +++ b/modules/git.nix @@ -101,6 +101,10 @@ rebase.autoSquash = true; rebase.autoStash = true; + fetch.fsckObjects = true; + receive.fsckObjects = true; + transfer.fsckobjects = true; + # https://bernsteinbear.com/git alias.recent = "! git branch --sort=-committerdate --format=\"%(committerdate:relative)%09%(refname:short)\" | head -10";