Skip to content

Commit

Permalink
[llvm] Ignore .rej files in .gitignore
Browse files Browse the repository at this point in the history
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
  • Loading branch information
JDevlieghere committed Apr 28, 2022
1 parent 0d6b574 commit 0fe9a5f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
*~
# Merge files created by git.
*.orig
# Reject files created by patch.
*.rej
# Byte compiled python modules.
*.pyc
# vim swap files
Expand Down

0 comments on commit 0fe9a5f

Please sign in to comment.