(이전상황)
vs code로 react 작업중에 실수로 node_modules 폴더를 ignore처리하지않고 push를 해버려 github에 node_modules 파일이 push되어버렸었습니다.
이에 해당 폴더를 지워주기 위하여 검색하며 진행했던 과정을 작성하였습니다!
혹여나 잘못된 부분이 있다면 댓글로 남겨주세요!
일단 또 같은 실수를 하지 않기위해
.gitignore 파일을 생성 후
node_modules/ 를 내부에 작성.
그 후 해당 콘솔(터미널)에
git add .gitignore
git rm -r --cached .
git commit -m "Cached Bye Bye!"
git push origin master
를 진행하니 github에서 지우기 성공!
728x90
728x90
'Dev > [기타]개발' 카테고리의 다른 글
java Spring 잘되던 API 갑자기 CORS 오류 삽질 (0) | 2023.01.17 |
---|---|
[Java] Apache PDFBox 사용하기 #1 (0) | 2022.11.21 |
React error " Module not found: Can't resolve './node_modules/react' " (0) | 2020.05.16 |
react + node js __ cors(Cross Origin Resource Sharing) 처리하기 (0) | 2020.05.16 |
[LINUX] gcp, heroku 등 ssh 종료(로그아웃) 시에 프로세스 유지하기 (0) | 2020.05.16 |