From af54945575895d5c6443fe730fb166afcb21dad2 Mon Sep 17 00:00:00 2001 From: Peery Date: Sun, 4 Dec 2022 18:37:54 +0100 Subject: [PATCH] Added target/ folder to gitignore The target folder is a build folder for rust and therefore not to be tracked by git. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index b4f1599..0d9c1b8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ __pycache__ .idea/ .vscode +target/ # build folder for Rust applications