.gitignore 적용 안될때
2021. 10. 15. 20:26ㆍ프로그래밍/기타
반응형
.gitignore 파일을 추가하거나 업데이트 했는데 적용이 안되는 경우가 있습니다.
이럴 때는 이렇게 해주시면 되요~
git add .
git rm -r --cached .
git commit -m 'remove ignored file'
# Push 할 것!
git push {remote} {branch}
반응형
'프로그래밍 > 기타' 카테고리의 다른 글
Ubuntu에서 GPG 에러 날 때 해결 방법 (0) | 2023.01.18 |
---|---|
/usr/bin/env: ‘python’: No such file or directory 문제 해결 방법 (0) | 2022.11.07 |
ssh-keygen을 이용한 ssh 자동 로그인 (0) | 2021.10.15 |
File Transfer - scp, rsync (0) | 2021.02.06 |
root 유저로 ssh 접근 제어 해야할 때 (0) | 2018.08.23 |