diff options
| author | Kostya <mail@sartin.in> | 2026-07-24 21:45:17 +0000 |
|---|---|---|
| committer | Kostya <mail@sartin.in> | 2026-07-24 21:45:17 +0000 |
| commit | 5504ca88e98f8451a6dc1c719862f32ca54bfc50 (patch) | |
| tree | eddccf84e88009816d6d8646ef8cd1659bf33efd /.gitignore | |
| download | java-bootstrap-5504ca88e98f8451a6dc1c719862f32ca54bfc50.tar.gz java-bootstrap-5504ca88e98f8451a6dc1c719862f32ca54bfc50.tar.xz java-bootstrap-5504ca88e98f8451a6dc1c719862f32ca54bfc50.zip | |
initial commit
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b63bf17 --- /dev/null +++ b/.gitignore | |||
| @@ -0,0 +1,15 @@ | |||
| 1 | # Ignore compiled Java bytecode | ||
| 2 | bin/ | ||
| 3 | *.class | ||
| 4 | |||
| 5 | # Ignore packaged binaries | ||
| 6 | *.jar | ||
| 7 | *.war | ||
| 8 | |||
| 9 | # Ignore OS-specific files | ||
| 10 | .DS_Store | ||
| 11 | Thumbs.db | ||
| 12 | |||
| 13 | # Optional: Ignore environment properties if they hold local secrets | ||
| 14 | # config.properties | ||
| 15 | |||