Add .git-blame-ignore-revs (#4743)

* Add .git-blame-ignore-revs

* Add readme comment

* Add "changed to 80 max column"
This commit is contained in:
Mm2PL
2023-08-05 13:10:55 +02:00
committed by GitHub
parent 6b7d12e410
commit 222b3da79e
2 changed files with 26 additions and 0 deletions
+12
View File
@@ -44,6 +44,18 @@ git submodule update --init --recursive
[Building on FreeBSD](../master/BUILDING_ON_FREEBSD.md)
## Git blame
This project has big commits in the history which for example update all line
endings. To improve the output of git-blame, consider setting:
```
git config blame.ignoreRevsFile .git-blame-ignore-revs
```
This will ignore all revisions mentioned in the [`.git-blame-ignore-revs`
file](./.git-blame-ignore-revs). GitHub does this by default.
## Code style
The code is formatted using clang format in Qt Creator. [.clang-format](src/.clang-format) contains the style file for clang format.