From 1bbfd5eac301c3e48002fc7b2d9d5ea4d63993b9 Mon Sep 17 00:00:00 2001 From: Pat Whittingslow Date: Tue, 21 Jul 2026 16:14:53 -0300 Subject: [PATCH] @MDr164 trick to ignore no-extension files (#162) * @MDr164 trick to ignore no-extension files * catch changes to LICENSE --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index 29d9708..7da9257 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,10 @@ +# Ignore files with no extensions trick: +# First ignore all. +* +# Unignore all with extensions. +!*.* +!LICENSE + # Go workspaces. go.work go.work.sum