From b7f8962d57444762e5027c20d1762fecf7fc8ab5 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sun, 7 Nov 2021 11:19:24 -0800 Subject: [PATCH] Add gitignore file for samples/fanotify/ subdirectory Commit 55dbda3d0e86 ("samples: Add fs error monitoring example") added a new sample program, but didn't teach git to ignore the new generated files, causing unnecessary noise from 'git status' after a full build. Add the 'fs-monitor' sample executable to the .gitignore for this subdirectory to silence it all again. Signed-off-by: Linus Torvalds --- samples/fanotify/.gitignore | 1 + 1 file changed, 1 insertion(+) create mode 100644 samples/fanotify/.gitignore diff --git a/samples/fanotify/.gitignore b/samples/fanotify/.gitignore new file mode 100644 index 0000000000000..d74593e8b2dee --- /dev/null +++ b/samples/fanotify/.gitignore @@ -0,0 +1 @@ +fs-monitor -- 2.39.5