diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-09-10 14:26:28 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@oracle.com> | 2022-09-10 14:26:28 -0700 |
commit | 04afb2de50ff3f7d074299a83f70ba779502eac6 (patch) | |
tree | 61eaf51786bfe229cb8645276992e36c74f3b33d | |
parent | 7c75ce13299af68b73563714ca366f891f6a9eb8 (diff) |
Add .git-blame-ignore-revs to hide whitespace commits from git blame
To use this in your local repo clone, you will need to either run
`git blame --ignore-revs-file .git-blame-ignore-revs`
or set it permanently with
`git config blame.ignoreRevsFile .git-blame-ignore-revs`
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | .git-blame-ignore-revs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.git-blame-ignore-revs b/.git-blame-ignore-revs new file mode 100644 index 0000000..8ccaa20 --- /dev/null +++ b/.git-blame-ignore-revs @@ -0,0 +1,16 @@ +# This file contains revisions to be ignored by git blame. +# These revisions are expected to be formatting-only changes. +# +# Calling `git blame --ignore-revs-file .git-blame-ignore-revs` will +# tell git blame to ignore changes made by these revisions when assigning +# assigning blame, as if the change never happened. +# +# You can enable this as a default for your local repository by running +# `git config blame.ignoreRevsFile .git-blame-ignore-revs` +# Important: if you do this, then switch to a branch without this file, +# `git blame` will fail with an error. +# +# Apply X.Org standard coding style +f03145544e4390e0bcd462ac5c154a4c474c46ee +# man: remove trailing spaces and tabs +3f2a98f38d8148784cafae46c1a42b0f6c9fc05a |