# Default ignored files
/shelf/
/workspace.xml
# Editor-based HTTP Client requests
/httpRequests/
# Datasource local storage ignored files
/dataSources/
/dataSources.local.xml
# Java class files
*.class
# Log files
*.log
# IDE files
.idea/
*.iml
# Build directories
/out/
target/
build/
# OS-specific files
.DS_Store
Thumbs.db
# Ignore node_modules
node_modules/
# Ignore environment files
.env
플러그인 설치 (선택 사항)
IntelliJ에서 .gitignore를 더 편리하게 관리하려면 Ignore Plugin을 설치할 수 있습니다.
- IntelliJ 메뉴에서 File → Settings(Mac에서는 Preferences).
- Plugins를 클릭한 후, Marketplace에서 Ignore 검색.
- .ignore 플러그인을 설치하고 IntelliJ를 재시작.
이미 Git에 추가된 파일은 .gitignore에 추가하더라도 무시되지 않습니다. 이 경우, 해당 파일을 Git에서 제거한 후 다시 커밋해야 합니다.
git rm --cached <파일명>
git rm -r --cached <폴더경로>
EX )
git rm -r --cached logs/
'intellij +springboot' 카테고리의 다른 글
[Java] POI 라이브러리로 데이터 엑셀 다운받기 + 셀 병합 (0) | 2024.09.11 |
---|---|
스프링 2.X -> 3.X 로 변경시 스프링 시큐리티(Spring Security) 설정 변경 (0) | 2023.11.28 |
[Spring] 스프링 부트 배포하기 (War 파일로 빌드) (0) | 2023.11.28 |
[intelliJ]인텔리제이에서 이클립스 프로젝트 import하기 (2) | 2023.10.24 |
[intellij] 그래들 스프링부트 프로젝트 스프링 시큐리티(Spring Security) 로그인 해보기(gradle + springboot) - 5 (2) | 2022.10.07 |