1
0
mirror of synced 2026-01-10 00:03:04 -05:00

Merge pull request #18198 from ryankshaw/patch-2

show how to always use the git blame ignore file
This commit is contained in:
Janice
2022-06-28 18:49:59 +02:00
committed by GitHub

View File

@@ -79,4 +79,10 @@ This can be useful when a few commits make extensive changes to your code. You c
git blame --ignore-revs-file .git-blame-ignore-revs
```
You can also configure your local git so it always ignores the revs in that file:
```shell
git config blame.ignoreRevsFile .git-blame-ignore-revs
```
{% endif %}