Skip to content

Commit

Permalink
Update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
in27sung authored Dec 4, 2024
1 parent 8d64b5d commit 5c68365
Showing 1 changed file with 60 additions and 17 deletions.
77 changes: 60 additions & 17 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 5c68365

Please sign in to comment.