From 0fe9a5f71a6432cdca69d023df9d8d464cc092b4 Mon Sep 17 00:00:00 2001 From: Jonas Devlieghere Date: Thu, 28 Apr 2022 08:43:12 -0700 Subject: [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 --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index b33fbbf93237..20c4f52cd378 100644 --- a/.gitignore +++ b/.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 -- cgit v1.2.1