|
From: Nicholas N. <nj...@so...> - 2023-04-26 06:54:45
|
https://sourceware.org/git/gitweb.cgi?p=valgrind.git;h=ca5486d60ca49420749ff02cf241e0be4b206351 commit ca5486d60ca49420749ff02cf241e0be4b206351 Author: Nicholas Nethercote <n.n...@gm...> Date: Wed Apr 26 16:11:26 2023 +1000 Add a .git-blame-ignore-revs file. This prevents large-scale changes (e.g. auto-formatting) from negatively affecting `git blame`. Diff: --- .git-blame-ignore-revs | 5 +++++ autogen.sh | 4 ++++ 2 files changed, 9 insertions(+) diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs new file mode 100644 index 0000000000..d0d7ea1a1b --- /dev/null +++ b/.git-blame-ignore-revs @@ -0,0 +1,5 @@ +# 2023-04-22: clang-format was run accidentally on a few files. +bf347551c99313a4af9c38bdeda9b946c9795945 + +# 2023-04-22: Revert bf347551c99313a4af9c38bdeda9b946c9795945. +76d6b4591a5a05e43e1a819bf630c0d8ee857a7e diff --git a/autogen.sh b/autogen.sh index 117462c7ff..27f54f7d62 100755 --- a/autogen.sh +++ b/autogen.sh @@ -15,3 +15,7 @@ run aclocal run autoheader run automake -a run autoconf + +# Valgrind-specific Git configuration. +echo "running: git configuration" +git config blame.ignoreRevsFile .git-blame-ignore-revs |