Git 오류 해결: “Cannot pull into a repository with state: MERGING_RESOLVED” 문제 해결 방법

Git에서 git pull을 실행할 때 다음과 같은 오류가 발생할 수 있습니다. Pulling 1 repositoryCannot pull into a repository with state: MERGING_RESOLVEDCannot pull into a repository with state: MERGING_RESOLVED 이 오류는 Git이 병합(Merge) 과정에서 MERGING_RESOLVED 상태로 남아있어 git pull을 실행할 수 없는 경우 발생합니다.즉, 병합 충돌이 해결된 상태지만 아직 커밋(commit)이 완료되지 더 읽기

Spring Batch 오류 전파 및 NOOP 해결 방법 (자동 실행 vs 수동 실행)

Spring Batch 실행 중 오류가 main()까지 전달되지 않는 문제와 NOOP 상태(All steps already completed or no steps configured for this job.) 발생 문제를 해결하는 방법을 정리합니다.자동 실행(Spring Boot spring.batch.job.enabled=true)과 수동 실행(spring.batch.job.enabled=false 후 JobLauncher 직접 호출) 방식에 맞게 정리하였습니다. 1. Spring Batch 오류 전파 문제 🔍 문제 상황 2. 자동 실행 더 읽기