반응형

2024/12/07 3

[Git] 추적파일 목록 갱신하기, 추적내용 초기화

간혹 추적하는 파일을 갱신해야할때가 있다. 바로 프로젝트 초창기에 진행되는데, 이걸 모르고 있었다.그래서 항상 프로젝트 밀고 진행. 내용은 gitignore를 생성이 늦었을 때, 발생하는데npm init, yarn init 등 해당 파일을 추적시 같이 node_modules가 추적 되는 경우가 있다. .gitignore를 최신화한다.shell 명령어를 친다.git rm -r --cached .git add .git commit -m "Refresh .gitignore tracking"적용 내용을 확인한다.

코딩/Git 2024.12.07

[yarn] yarn 설치 불가 이슈(다층구조 충돌이슈)

yarn으로 koa 프레임워크를 이용하여, 노드환경을 구성하려고 한다.그런데, 이러한 에러가 발생하길래 무엇인가해서 봤더니, 내용에 정답이 있다.  Usage Error: The nearest package directory (/Users/맥북/2024.12/techofReact/blog/blog-backend) doesn't seem to be part of the project declared in /Users/맥북.- If /Users/맥북 isn't intended to be a project, remove any yarn.lock and/or package.json file there.- If /Users/맥북 is intended to be a project, it might be that y..

코딩/Node.js 2024.12.07
728x90