git ignore란?
- git 에서 특정 파일이나 폴더를 관리 대상에서 제외 시킬 때 사용하는 파일
1. git ignore 파일 생성
gitignore.io
Create useful .gitignore files for your project
www.toptal.com
2. git 최상위 경로로 파일을 이동
3. git ignore 파일 적용
git rm -r --cached .
git add .
git commit -m "Apply .gitignore"
'BackEND > Java' 카테고리의 다른 글
java 설치 시 환경 변수 변경 및 확인 (0) | 2021.01.20 |
---|---|
spring boot mail 발송 (0) | 2021.01.20 |
war 배포시 윈도우 서버 서비스 등록하는 방법 (0) | 2021.01.20 |
md5, sha256 암호화 방법과 로그인 프로세스 (0) | 2020.12.11 |
spring boot controller request multiple (0) | 2020.12.10 |