TIL(Today I learned)/3. REACT
(ERROR) node_module 폴더까지 git add . 로 추가 될 때
dot_Connector
2022. 5. 16. 22:01
.gitignore 파일에 node_module 이 git 추가시 무시되도록 명시해주지 않으면 전체가 staged 된다.
참조:
Git - Ignore node_modules folder everywhere
https://stackoverflow.com/a/51150651/17069736
Git - Ignore node_modules folder everywhere
I have a project containing multiple other projects : Main project Mini project 1 Mini project 2 All containing node_modules folder. I want git to ignore the folder no matter where it is start...
stackoverflow.com