From a1bab9acd41c0448ab2cc6f32b0ad86ce0e9bcb3 Mon Sep 17 00:00:00 2001 From: Peter Keresztes Schmidt Date: Thu, 4 Feb 2021 22:09:13 +0100 Subject: [PATCH] git: Add .git-blame-ignore-revs file and add previous CMake cleanup commit to it This file can be passed to git blame to ignore the listed revisions. With this large mechanistic reformats/cleanups can be done without influencing the blame-ability of the codebase. Sample usage: git blame --ignore-revs-file .git-blame-ignore-revs path/to/file Also one can make this permanent by using: git config blame.ignoreRevsFile .git-blame-ignore-revs --- .git-blame-ignore-revs | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .git-blame-ignore-revs diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs new file mode 100644 index 000000000..8785e55b2 --- /dev/null +++ b/.git-blame-ignore-revs @@ -0,0 +1,2 @@ +# Reindent CMakeLists +6c9983155c65848a3e67976445cd20fb4fbfe108 \ No newline at end of file