1
0
mirror of synced 2026-01-10 18:02:53 -05:00

show how to always use the git blame ignore file

This commit is contained in:
Ryan Shaw
2022-05-24 17:43:38 -06:00
committed by GitHub
parent b47260996c
commit a0618e8bed

View File

@@ -84,4 +84,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
```
Or to configure your local git so it always ignores the revs in that file:
```shell
git config blame.ignoreRevsFile .git-blame-ignore-revs
```
{% endif %}