[PATCH] D124619: [llvm] Ignore .rej files in .gitignore

Jonas Devlieghere via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Thu Apr 28 08:21:08 PDT 2022


JDevlieghere created this revision.
JDevlieghere added reviewers: vsavchenko, sammccall, mehdi_amini.
Herald added a project: All.
JDevlieghere requested review of this revision.

Ignore reject files (.rej) files generated by patch. I can't imagine a reason they should ever be checked in. I'm wondering if we should ignore patch files as well but, though maybe we don't want them to be that easily deleted by something like git clean.


https://reviews.llvm.org/D124619

Files:
  .gitignore


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


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D124619.425789.patch
Type: text/x-patch
Size: 276 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20220428/b5b829c7/attachment.bin>


More information about the llvm-commits mailing list