From 20e0791ac80e2cb6d850ceee99020ce92717393d Mon Sep 17 00:00:00 2001 From: Bart Moyaers Date: Sun, 24 Nov 2019 20:00:27 +0100 Subject: [PATCH] ignore files without extensions (linux executables) --- .gitignore | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.gitignore b/.gitignore index 217dbbc..16be9ef 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,12 @@ +# Ignore all +* + +# Unignore all with extensions +!*.* + +# Unignore all dirs +!*/ + .vscode .vs *.exe \ No newline at end of file