From 1f349834e670c31d5b1c0668aa5ecd536d288fd3 Mon Sep 17 00:00:00 2001 From: StillHammer Date: Fri, 5 Dec 2025 12:04:47 +0800 Subject: [PATCH] Remove nul file and add Windows device names to .gitignore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Delete problematic 'nul' file (Windows reserved device name) - Add Windows reserved names (nul, CON, PRN, AUX) to .gitignore - Prevents future issues with Windows device name conflicts 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitignore | 7 +++++++ nul | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) delete mode 100644 nul diff --git a/.gitignore b/.gitignore index d05cb67..879b489 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,10 @@ Thumbs.db # Temporary files *.tmp *.temp + +# Windows device names (reserved names that cause issues) +nul +NUL +CON +PRN +AUX diff --git a/nul b/nul deleted file mode 100644 index 42de59f..0000000 --- a/nul +++ /dev/null @@ -1 +0,0 @@ -/usr/bin/bash: line 1: del: command not found