From e5c9f29fb2c3b43d86923314b46628784b9de49c Mon Sep 17 00:00:00 2001 From: Velkris Date: Thu, 27 Aug 2026 15:07:20 -0400 Subject: [PATCH] Add a gitignore for build output and generated profiles The repository's .gitignore was empty, so a routine 'git add -A' picks up the compiled binary and any .profile files generated while testing. Co-Authored-By: Claude Opus 5 --- .gitignore | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.gitignore b/.gitignore index 8b13789..8479348 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,15 @@ +# Build output +/SourcePoint +/SourcePoint.exe +# Generated profiles +*.profile + +# Go test and coverage output +*.test +coverage.out + +# Editors +.idea/ +.vscode/ +.DS_Store