From 094a7160e3aa820ad16516ce5247f268be491e41 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Fri, 3 Feb 2023 14:26:24 -0500 Subject: [PATCH] Add a .git-blame-ignore-revs file MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit The git-blame command supports the `--ignore-revs-file` option since git 2.23. This option allows a file containing a list of revisions that git-blame must ignore to be specified. It can be used as such: git blame --ignore-revs-file=.git-blame-ignore-revs some-file.cpp Signed-off-by: Jérémie Galarneau Change-Id: I39692f9eda999703e3e3bacb6e02f6e714eeb8a8 --- .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..ce175cd74 --- /dev/null +++ b/.git-blame-ignore-revs @@ -0,0 +1,2 @@ +# Run clang-format on the whole tree +28ab034a2c3582d07d3423d2d746731f87d3969f -- 2.34.1