From 2487e32c39ee48f8045ff0c89c13e25bca1d5282 Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Fri, 1 May 2020 18:42:38 +0200 Subject: [PATCH] Add git configuration to ignore errors from `git fsck` --- .gitconfig | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .gitconfig diff --git a/.gitconfig b/.gitconfig new file mode 100644 index 0000000000..c1edb81365 --- /dev/null +++ b/.gitconfig @@ -0,0 +1,9 @@ +# This repository contains two commits with multiple authors. + +# By default, fsck will show errors for those commits. +# Run the following command to ignore them: + +# git config --local include.path ../.gitconfig + +[fsck] + multipleAuthors=ignore