From 5c68365826f8c5b0575b91ddaa6395e329cbad61 Mon Sep 17 00:00:00 2001 From: Insung <110476794+in27sung@users.noreply.github.com> Date: Wed, 4 Dec 2024 23:08:11 +0900 Subject: [PATCH] Update .gitignore --- .gitignore | 77 ++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 60 insertions(+), 17 deletions(-) diff --git a/.gitignore b/.gitignore index 35823ac..d3e0413 100644 --- a/.gitignore +++ b/.gitignore @@ -1,35 +1,78 @@ +# =========================== +# Java 프로젝트 기본 무시 규칙 +# =========================== + +# 컴파일된 .class 파일 +*.class + +# =========================== +# Maven 관련 파일 및 디렉토리 +# =========================== + # Maven 빌드 결과물 target/ -# Eclipse 설정 파일 +# =========================== +# Eclipse 관련 설정 파일 +# (Eclipse를 사용하는 경우 필요, 사용하지 않으면 주석 처리 가능) +# =========================== .classpath .project .settings/ -.springBeans -# Maven/Eclipse 통합 플러그인 (M2E-WTP) -**/m2e-wtp/ +# =========================== +# IntelliJ IDEA 관련 파일 +# (IntelliJ를 사용하는 경우 필요, 사용하지 않으면 주석 처리 가능) +# =========================== +.idea/ +*.iml +out/ -# OS 관련 파일 +# =========================== +# IDE와 관련 없는 빌드 디렉토리 +# =========================== + +# Eclipse, IntelliJ, VSCode 등에서 생성된 빌드 디렉토리 +bin/ + +# =========================== +# 운영체제별 무시 파일 +# =========================== + +# macOS 관련 .DS_Store + +# Windows 관련 Thumbs.db desktop.ini -# IntelliJ IDEA 설정 파일 -.idea/ -*.iml +# =========================== +# 테스트 코드 디렉토리 +# =========================== -# 환경 설정 파일 -*.properties -*.yml -.env +# 테스트 디렉토리는 프로젝트의 중요한 부분이므로 무시하지 않습니다. +# src/test/ + +# =========================== +# 로그 파일 +# =========================== # 로그 파일 *.log -# Gradle -.gradle/ -build/ +# =========================== +# 환경 설정 파일 +# =========================== -# Ignore compiled class files -*.class +# 개인 환경 설정 파일 +.env +*.env + +# =========================== +# 기타 +# =========================== + +# 특정 파일이나 디렉토리가 필요 없다면 여기에 추가 +# 예: 임시 작업 파일 +*.tmp +*.bak