WORK/Trouble 4

[오류/Git] .gitignore가 작동하지 않을 때/.gitignore 커밋 오류

에러 : .gitignore가 제대로 작동되지 않아서 ignore처리된 파일이 계속 changes에 나올때가 있다. 찾아보니 git의 캐시가 문제가 되는거였다. terminal에 아래 명령어로 캐시 내용을 전부 삭제 후 다시 add All해서 커밋하면 해결된다. git rm -r --cached . git add . git commit -m "fixed untracked files" 참고 : https://stackoverflow.com/questions/11451535/gitignore-is-ignored-by-git

WORK/Trouble 2023.06.21

[오류/스프링부트] Could not resolve all files for configuration ':compileClasspath'.

에러메시지 Could not resolve all files for configuration ':compileClasspath'. > Could not find org.springframework.boot:spring-starter-mustache:. compileClassPath ??? 뭔가 컴파일이 이상하다는 감이 왔다. 인터넷에 찾아보니 build.gradle 문제라고 나와서 dependencies 쪽을 봤더니... mustache 컴파일 하는 부분에서 spring - starter라고 boot 를 생략해서 적은 것이었다. boot를 추가해주고 다시 빌드하니 정상적으로 실행

WORK/Trouble 2023.06.20