DB정보가 담겨있는 application.properties 내용을 깃에 업로드 안하고 싶어서
.gitignore 에 다음 경로를 추가했는데 여전히 application.properties 의 내용이 업데이트 되고 있었다.
/src/main/resources/application.properties
gitignore 을 사용하고 싶으면 기존에 버전관리 했던 내용을 삭제해줘야 한다.
git rm --cached D:/Users/Intellij/boardapi/src/main/resources/application.properties
위의 명령어 실행 후 변경사항을 푸시하면
git add .
git commit -m "message"
git push
gitignore 이 정상작동되고 application.properties 가 깃에 업로드 되지 않는다.
반응형
'공부 > Git' 카테고리의 다른 글
[github] 티스토리 게시글 깃허브에 커밋으로 업로드하기 (0) | 2021.07.19 |
---|---|
git push 삭제 (0) | 2021.06.07 |
git clone remote 차이 (0) | 2021.05.07 |
깃허브 프로필 꾸미기 - 깃허브 방문자 확인 (Hits) (0) | 2021.05.03 |
github readme profile 만들기 (0) | 2021.05.02 |