[llvm] Ignore .rej files in .gitignore

Ignore reject files (.rej) files generated by patch. I can't imagine a
reason they should ever be checked in. I considered ignoring patch files
as well but decided to err on the side of caution because we might not
want them to be easily deleted by something like git clean.

Differential revision: https://reviews.llvm.org/D124619
This commit is contained in:
Jonas Devlieghere 2022-04-28 08:43:12 -07:00
parent 0d6b574b87
commit 0fe9a5f71a
No known key found for this signature in database
GPG Key ID: 49CC0BD90FDEED4D

2
.gitignore vendored
View File

@ -13,6 +13,8 @@
*~ *~
# Merge files created by git. # Merge files created by git.
*.orig *.orig
# Reject files created by patch.
*.rej
# Byte compiled python modules. # Byte compiled python modules.
*.pyc *.pyc
# vim swap files # vim swap files