From 25d9ce8b9cff2b7daeecb88992d33011783d60d0 Mon Sep 17 00:00:00 2001 From: Canop Date: Mon, 18 Oct 2021 10:46:00 +0200 Subject: [PATCH] simplify .gitignore (#783) `/target` is useless when there's already `**/target`. And `**/target` should be written just `target`. And to be more precise, what's really wanted here is to match the "target" *directory* everywhere so the best rule is `target/`. --- .gitignore | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 433d02d7..01d37241 100644 --- a/.gitignore +++ b/.gitignore @@ -1,7 +1,6 @@ -/target +target/ *.new .vscode .vim .DS_Store /assets/man/zellij.1 -**/target \ No newline at end of file