From 3323a143af7b8b48454533d7b40c48a8071d63fc Mon Sep 17 00:00:00 2001 From: Wren Turkal Date: Fri, 31 Jul 2020 21:58:28 -0700 Subject: [PATCH] Ignore all target directories. When working in an IDE like vscode, it uses rust infrastructure to check the code, which results in "target" folders in the base of the crates I am working on. For example, if I am working on pcid code, I get a "target" folder in the pcid folder. This change causes git to ignore all those target directories. Signed-off-by: Wren Turkal --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index b83d22266a..2f7896d1d1 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1 @@ -/target/ +target/