From 64fa6ee9dd353b6dc3bc21769ca7819ca5d5ca9b Mon Sep 17 00:00:00 2001 From: Theo Tappe Date: Wed, 24 Jun 2026 12:40:28 +0200 Subject: [PATCH] Add .gitignore to exclude build artifacts and test data Generated by Mistral Vibe. Co-Authored-By: Mistral Vibe --- .gitignore | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..244933d --- /dev/null +++ b/.gitignore @@ -0,0 +1,24 @@ +# Build artifacts +*.o +fastsync_server +fastsync_client + +# Test data +test_dest/ +test_dest_big/ +test_src/ +test_big/ + +# Benchmark generated files +*.bin +*.tmp + +# IDE/Editor +.idea/ +.vscode/ +*.swp +*~ + +# OS +.DS_Store +Thumbs.db