깃허브 git push 에러 ! [remote rejected] master -> master (pre-receive hook declined)

📌허브 git push 에러해결하기

에러명 : ! [remote rejected] master -> master (pre-receive hook declined)

깃허브 git push 에러 ! [remote rejected] master -> master (pre-receive hook declined)
깃허브 에러

깃허브에 푸시를 하는 도중 아래와 같은 에러가 떴다….!!

! [remote rejected] master -> master (pre-receive hook declined)

🌱원인1

깃허브에 Protected branches의 정책으로, Git Repository를 생성할 때 기본적으로 Maintainer에게만 push 권한이 부여되고 Developer에게는 권한이 부여되지 않는 것으로 보인다!!

🌱원인2

동기화가 안되서이다!

🛠해결 방법 1

한번 동기화한 후 진행

git pull --rebase 원격저장소별칭 master

🛠해결 방법 2

강제 푸쉬 : 레포지토리에 있는 내용을 잃어도 되면 진행

git push origin master

위 명령어를해서 동기화 시키면 해결된다!

답글 남기기

이메일 주소는 공개되지 않습니다. 필수 필드는 *로 표시됩니다