From 254b33c19f9fa618812819c92d6320589faba220 Mon Sep 17 00:00:00 2001 From: Tim Van Patten Date: Fri, 11 Oct 2024 12:29:48 -0600 Subject: [PATCH] Add .gitignore Add .gitignore file, so git commands ignore the following: * .out/ (Build directory) * .vscode/ (Visual Studio Code) * .idea/ (Intellij) Signed-off-by: Tim Van Patten --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f58f7a3 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.out/ +.vscode/ +.idea/