문제점 및 증상 머지(merge)를 하고, 푸시(push)를 하려고 할 때, 다음과 같은 오류가 발생하면서 정상적으로 푸시(push)가 되지 않았습니다. $ git push remote: You are not allowed to push code to this project. fatal: unable to access 'https://gitlab.myhost.net/prj/test.git/': The requested URL returned error: 403 원인 분석 및 해결 방안 윈도우에 저장된 자격증명이 해당 저장소에 접근하기에 권한이 부족하여 발생한 문제입니다. git 명령으로 "gitlab.myhost.net" 서버의 다른 저장소 접근할 때 이용했던 계정이 "prj/test" 저장소에 접근을 ..