From e4bc11f3317b29485ab83502775f9a8c99dfe191 Mon Sep 17 00:00:00 2001 From: Yucheng Hu Date: Sat, 22 Jul 2017 23:58:23 -0400 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E5=8C=96=E6=8F=90=E4=BA=A4?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E7=9A=84=E7=9A=84=E6=89=80=E6=9C=89=E6=BA=90?= =?UTF-8?q?=E4=BB=A3=E7=A0=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitattributes | 39 +++++++++++++++++++++++++++++++++++++ .gitignore | 52 +++++++++++++++++++++++++++++++++++++++++++++++++ .mvn/jvm.config | 1 + 3 files changed, 92 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 .mvn/jvm.config diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..71b25de --- /dev/null +++ b/.gitattributes @@ -0,0 +1,39 @@ +# Handle line endings automatically for files detected as text +# and leave all files detected as binary untouched. +* text=auto + +# +# The above will handle all files NOT found below +# +# These files are text and should be normalized (Convert crlf => lf) +*.css text +*.groovy text +*.htm text +*.html text +*.java text +*.js text +*.json text +*.jelly text +*.jellytag text +*.less text +*.properties text +*.rb text +*.sh text +*.txt text +*.xml text + +# These files are binary and should be left untouched +# (binary is a macro for -text -diff) +*.class binary +*.gz binary +*.tgz binary +*.ear binary +*.gif binary +*.hpi binary +*.ico binary +*.jar binary +*.jpg binary +*.jpeg binary +*.png binary +*.war binary +*.zip binary diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..a76d9a8 --- /dev/null +++ b/.gitignore @@ -0,0 +1,52 @@ +target +work + +# IntelliJ project files +*.iml +*.iws +*.ipr +.idea +out + +# eclipse project file +.settings +.classpath +.project +build + +# vim +*~ +*.swp + +# ctags +tags + +# OS X +.DS_Store + +# mvn versions:set +pom.xml.versionsBackup + +war/images/16x16 +war/images/24x24 +war/images/32x32 +war/images/48x48 +jenkins.war +RPMS +SRPMS +debian/binary +debian/debian/jenkins +debian/debian/jenkins.substvars +debian/debian/files +debian/build-stamp +debian/configure-stamp +*.debhelper +*.debhelper.log +jenkins_*.build +jenkins_*.changes +*.deb +*.pkg +*.zip +push-build.sh +war/node_modules/ +.java-version \ No newline at end of file diff --git a/.mvn/jvm.config b/.mvn/jvm.config new file mode 100644 index 0000000..e93a5b4 --- /dev/null +++ b/.mvn/jvm.config @@ -0,0 +1 @@ +-Xmx800m