diff options
| author | diogo464 <[email protected]> | 2025-06-19 08:52:39 +0100 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-06-19 08:52:39 +0100 |
| commit | 307eb211a9299c21ba3e0eacdbadb76afe70ad38 (patch) | |
| tree | 4ec26eef5dfab22468f73648884339769aa3a2c4 | |
| parent | 39b3d9bfd499e131fd8a9bd1bf0021b62ec18c53 (diff) | |
Add .gitignore for demon process files
Ignore *.pid, *.stdout, and *.stderr files created by demon processes
to prevent them from being accidentally committed to the repository.
🤖 Generated with [Claude Code](https://claude.ai/code)
Co-Authored-By: Claude <[email protected]>
| -rw-r--r-- | .gitignore | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..14e0646 --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1,6 @@ | |||
| 1 | /target | ||
| 2 | |||
| 3 | # Demon process files (should not be committed) | ||
| 4 | *.pid | ||
| 5 | *.stdout | ||
| 6 | *.stderr | ||
