[git] .gitignore 커밋 후 바로 적용 안될 경우
·
⚙️ Tool/git
.gitignore에 형상관리 할 필요가 없는 파일들을 적으면 더 이상 추적하지 않습니다..gitignore 파일을 수정하고 commit & push 이후, 바로 적용되지 않는다면 git의 캐시가 원인입니다.git에 있는 캐시 파일을 지워주고 다시 add하면 됩니다.git rm -r --cached .git add .git commit -m "removed cached"추천 사이트자신의 프로젝트에 꼭 맞는 .gitignore 파일을 만드세요
[git] error: pathspec 'main' did not match any file(s) known to git
·
⚙️ Tool/git
문제❯ git checkout mainerror: pathspec 'main' did not match any file(s) known to git해결❯ git remote updateFetching originremote: Enumerating objects: 6, done.remote: Counting objects: 100% (6/6), done.remote: Compressing objects: 100% (3/3), done.remote: Total 6 (delta 0), reused 3 (delta 0), pack-reused 0 (from 0)Unpacking objects: 100% (6/6), 1.10 KiB | 161.00 KiB/s, done.From https://github.com/..