From 916a3cbabe4e50062fce61ff6f2f5d46c05dfbd1 Mon Sep 17 00:00:00 2001 From: 이민희 <mhlee@maprex.co.kr> Date: 목, 17 3월 2022 17:47:45 +0900 Subject: [PATCH] - api로 이슈 추가 시 url/ip로 업체 찾는 코드 수정 --- .gitignore | 120 ++++++++++++++++++++++++++++++++++++++++++++++++++---------- 1 files changed, 100 insertions(+), 20 deletions(-) diff --git a/.gitignore b/.gitignore index 4d40434..801ee54 100644 --- a/.gitignore +++ b/.gitignore @@ -1,23 +1,103 @@ -# Object files -*.o -*.ko -*.obj -*.elf +# Created by https://www.gitignore.io/api/windows,intellij,java -# Libraries -*.lib -*.a +### Windows ### +# Windows image file caches +Thumbs.db +ehthumbs.db -# Shared objects (inc. Windows DLLs) -*.dll -*.so -*.so.* -*.dylib +# Folder config file +Desktop.ini -# Executables -*.exe -*.out -*.app -*.i*86 -*.x86_64 -*.hex +# Recycle Bin used on file shares +$RECYCLE.BIN/ + +# Windows Installer files +*.cab +*.msi +*.msm +*.msp + +# Windows shortcuts +*.lnk + + +### Intellij ### +# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio + +*.iml + +## Directory-based project format: +.idea/ + +logs/ +# if you remove the above rule, at least ignore the following: + +# User-specific stuff: +# .idea/workspace.xml +# .idea/issues.xml +# .idea/dictionaries + +# Sensitive or high-churn files: +# .idea/dataSources.ids +# .idea/dataSources.xml +# .idea/sqlDataSources.xml +# .idea/dynamic.xml +# .idea/uiDesigner.xml + +# Gradle: +# .idea/gradle.xml +# .idea/libraries + +# Mongo Explorer plugin: +# .idea/mongoSettings.xml + +## File-based project format: +*.ipr +*.iws + +## Plugin-specific files: + +# IntelliJ +/out/ + +# mpeltonen/sbt-idea plugin +.idea_modules/ + +# Eclipse + +.metadata/ +RemoteSystemTempFiles/ +.project + +# JIRA plugin +atlassian-ide-plugin.xml + +# Crashlytics plugin (for Android Studio and IntelliJ) +com_crashlytics_export_strings.xml +crashlytics.properties +crashlytics-build.properties + + +### node ### +#kr.wisestone.owl/src/main/webapp/bower_components/ + +*.log + + +### Java ### +*.class +target/ + +# Mobile Tools for Java (J2ME) +.mtj.tmp/ + +# Package Files # +*.war +*.ear + +# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml +hs_err_pid* + + +### Node ### +node_modules/ \ No newline at end of file -- Gitblit v1.8.0