Git 수정된 파일 추적제외, modify files 추적제외 # 추적제외git update-index --assume-unchanged # 추적시작git update-index --no-assume-unchanged 설치및설정/Git 2025.01.04
Git 추적제외, Untracked files 제외 해당 파일을 .gitignore와 마찬가지로 편집vi .git/info/excludesample_img.jpgsample_dir이렇게하면 .gitignore와 마찬가지로 git에서 무시한채로 작업할 수 있다.단 차이점은 .gitignore는 git repository를 사용하는 모든 사람이 같이 해당 파일 및 디렉터리가 추적제외되고,.git/info/exclude에 적은 파일 및 디렉터리는 내 로컬 환경에서만 추적 제외된다. 설치및설정/Git 2025.01.04
React 포트번호 변경 packge.json "scripts": { "start": "export PORT=3001 && react-scripts start", "build": "react-scripts build", "test": "react-scripts test", "eject": "react-scripts eject" },위와 같이 package.json에서 scripts의 start 부분에 PORT번호를 추가해준다. Frontend 2025.01.04