github 등에 공유하고 싶지 않은 정보를 올리지 않기 위해 .gitignore 파일을 사용하는 데,
.gitignore파일에 숨기고 싶은 파일 또는 폴더를 기재했지만 정상적으로 작동하지 않을 때가있다.
git의 캐쉬가 문제가 되는 상황이기 때문에, 아래 명령어로 캐쉬 내용을 모두 지운 후 다시 git add 해서 올리면 된다.
git rm -r --cached .
git add .
git commit -m ".gitignore update"
(참고: https://stackoverflow.com/questions/11451535/gitignore-is-ignored-by-git)
반응형
'IT' 카테고리의 다른 글
[Web] 브라우저 렌더링 (0) | 2022.02.09 |
---|---|
리액트(React.js) vs 뷰(Vue.js) (4) | 2022.01.26 |
[AWS] MAC terminal로 ssh키 접속 [Permission Error] (0) | 2021.09.16 |
VScode - React styled-components 속성 색상을 구분하자(extenstion - vscode-styled-componenets) (0) | 2021.08.07 |
VScode - 코드를 예쁘게 만들자 (extension - Prettier, bracket pair colorizer2 ) (0) | 2021.08.04 |
댓글