[Git Error] Failed to Push Some Refs to 'Git 원격 저장소' (origin)
상황 : Push 권한이 있는 user가 소스코드 변동사항이 있는 origin을 Pull하지 않고, 소스코드 변동사항이 있는 코드를 수정해서 Push할때 생기는 Error
해결 방법 :
1 step. Git 원격 저장소(origin)에서 소스코드 변동사항이 있는 코드를 Pull
- git pull origin 'your-branch'
2 step. Pull 후에 다시 Push하면 정상적으로 작동
- git push origin 'your-branch'