-
git ignore 적용Infra & Tools/GIT 2022. 9. 25. 19:54
매번 찾는게 귀찮아서,, 적어 본디. 깃 이그노어 적용 ㄱㄱ
정리 :
git rm -r --cached . git add . git commit -m "Apply .gitignore"
-----------
git 은 파일을 track 을 한다.
git ignore 를 수정 하거나 추가를 할시 재 적용이 필요하며 다음 단계를 따르면 된다
1.
- git이 있는 최상위 폴더로 이동
2.
git rm -r --cached .
만약 : fatal: No pathspec was given. Which files should I remove? 이라 뜨면git ignore 를 local 에 방금 추가한거라
관리가 안된다 라는 뜻으로 걱정없이 3번을 해준다.
3.
git add .
git status
4.
git commit -m "[FEAT]gitignore again"
5.
git push origin
'Infra & Tools > GIT' 카테고리의 다른 글
AWS Ec2 에 Private Repository pull & build (0) 2022.10.22 Git Branch 보호 설정 (1) 2022.09.25 Git 폴더 바로가기 클릭 안됨 해결 (0) 2022.09.19 Git remote branch 가져오기 (0) 2022.09.05 git branch clear , 모든 브랜치 삭제 (0) 2022.09.05