diff --git a/content/repositories/working-with-files/using-files/viewing-a-file.md b/content/repositories/working-with-files/using-files/viewing-a-file.md index 8ae7457d943a..00cf5b27c05a 100644 --- a/content/repositories/working-with-files/using-files/viewing-a-file.md +++ b/content/repositories/working-with-files/using-files/viewing-a-file.md @@ -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 %}