Skip to content

Commit 0fe9a5f

Browse files
committed
[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
1 parent 0d6b574 commit 0fe9a5f

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
*~
1414
# Merge files created by git.
1515
*.orig
16+
# Reject files created by patch.
17+
*.rej
1618
# Byte compiled python modules.
1719
*.pyc
1820
# vim swap files

0 commit comments

Comments
 (0)