GitHub에 코들 올릴 시 보안을 위해 properties, http인증서와 같은 파일들은 올리지 않는다.
이를위해 Git에서는 .gitignore 라는 파일을 제공한다. .gitignore 에 지정된 파일들은 github에 올라가지 않는다.
방법은 매우 간단하다. .gitignore 파일에 git에 올리고 싶지 않은 파일 경로를 지정해두면 된다.
### SpringBoot Properties ###
src/main/resources/*.properties
감사합니다. 이런 정보를 나눠주셔서 좋아요.