From fede0fa3356627fc08409f951baa2c0806c87454 Mon Sep 17 00:00:00 2001 From: Xujiayao Date: Wed, 30 Jul 2025 20:20:54 +0800 Subject: [PATCH] git files --- .gitattributes | 12 ++++++++++++ .gitignore | 14 +++++++++++++- 2 files changed, 25 insertions(+), 1 deletion(-) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..f91f6460 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,12 @@ +# +# https://help.github.com/articles/dealing-with-line-endings/ +# +# Linux start script should use lf +/gradlew text eol=lf + +# These are Windows script files and should use crlf +*.bat text eol=crlf + +# Binary files should be left untouched +*.jar binary + diff --git a/.gitignore b/.gitignore index 255bf8c1..2995b0a2 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,10 @@ build/ out/ classes/ +# Eclipse + +*.launch + # IDEA .idea/ @@ -12,6 +16,14 @@ classes/ *.ipr *.iws +# VSCode + +.settings/ +.vscode/ +bin/ +.classpath +.project + # macOS *.DS_Store @@ -25,4 +37,4 @@ run/ hs_err_*.log replay_*.log *.hprof -*.jfr \ No newline at end of file +*.jfr