본문 바로가기

마주쳤던 에러 해결 모음49

깃 사용(add, commit) 시 /index.lock': File exists. 에러 나는 경우 git 사용 과정에서 충돌이 생겨 lock이 걸린 경우, .git 폴더 하단에 index.lock이라는 파일이 존재하는걸 확인할 수 있는데, index.lock 파일을 삭제하면 에러 발생하지 않는다. 2022. 3. 6.
Failed to connect to repository - jenkins bitbucket 연동하며 애먹었던 에러 https://windowshyun.tistory.com/30 젠킨스(Jenkins) 윈도우(Windows) 버전 Git Private Repositories 불러오기 - 젠킨스(Jenkins) 윈도우(Windows)에서 Github Private Repositories를 불러오는 방법입니다. - 필수 준비물 : Git, Private Repo, Jenkins, GitHub ID 1. 젠킨스에 로그인 한 뒤 "새 작업"을 눌러줍니다. 2. it.. windowshyun.tistory.com Failed to connect to repository : Command "git.exe ls-remote -h https://github.com/WindowsHyun/Webthisisserver.git HEAD" .. 2021. 8. 15.
Spring boot 'Process finished with exit code 1' 에러 해결 인터넷 강의 보고 Spring Boot JPA 설정 따라하고 실행하는데 아래와 같은 에러가 발생함. build.gradle / dependencies에 아래 JPA 의존성 추가하였었음. implementation 'org.springframework.boot:spring-boot-starter-data-jpa' runtimeOnly 'mysql:mysql-connector-java' Reason: Failed to determine a suitable driver class Action: Consider the following: If you want an embedded database (H2, HSQL or Derby), please put it on the classpath. If you have .. 2021. 1. 20.
twitch api 사용법 (key 생성, Client-ID, Authorization) https://dev.twitch.tv/console Twitch Twitch is the world's leading video platform and community for gamers. dev.twitch.tv 에서 '내 응용 프로그램 등록' 클릭 작성 후 저장 // 그리고 기존에는 HTTP Header에 'Client-ID'만 넣으면 됐었는데, 언제부터인지 'Authorization' 값도 추가해야 하게 바뀌었다. 아래는 추가법 'OAuth client credentials flow' 으로 값 구할 수 있다. https://dev.twitch.tv/docs/authentication/getting-tokens-oauth Getting Tokens: OAuth Getting Tokens: OAut.. 2020. 5. 20.