일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- c# winform
- HTML
- C# delegate
- c언어
- Houdini
- C언어 포인터
- c#
- 플러터
- 깃
- 유니티
- git
- github
- jupyter lab
- jupyter
- C++
- c# 추상 클래스
- Flutter
- 포인터
- c# 윈폼
- dart 언어
- gitlab
- Unity
- Data Structure
- Python
- 도커
- Algorithm
- vim
- 다트 언어
- 구조체
- docker
Archives
- Today
- Total
nomad-programmer
[Programming/Errors] Git Push rejected 본문
Git Push rejected: Push to origin/master was rejected
jetbrains 에디터에서 git을 사용하다보면 git push rejected 라는 에러로 push가 되지 않을 때가 있다.
이것은 원격 저장소에 커밋 변화가 생겼는데 그 저장소에 push를 하려고 하다보니 이렇게 된 것이다. 그래서 pull로 컷밋 을 가져오려고하면 이 또한 에러나 발생하여 명령 실행이 안된다.
해결 방법:
1. 현 프로젝트의 최상위 디렉토리로 간다.
2. 마우스 우측 클릭을 하여 'Git Bash here' 메뉴를 클릭한다.
3. 아래의 명령을 실행한다.
git pull origin master --allow-unrelated-histories
4. edit 메시지 작성
5. 다시 Jetbrains 에디터로가서 commit & push를 진행한다.
이렇게하면 git push rejected 오류를 해결할 수 있다.
'Programming > Errors' 카테고리의 다른 글
[Programming/Errors] ModuleNotFoundError: No module named 'pkg_resources.py2_warn' (0) | 2020.07.08 |
---|---|
[Programming/Errors] scanf: This function or variable may be unsafe. 오류 (0) | 2020.06.14 |
Comments