Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- Kaggle
- 우분투
- Git
- 데이콘
- AI 경진대회
- programmers
- Baekjoon
- 금융문자분석경진대회
- 백준
- dacon
- 자연어처리
- Real or Not? NLP with Disaster Tweets
- Docker
- PYTHON
- 코로나19
- 더현대서울 맛집
- github
- ChatGPT
- leetcode
- gs25
- 편스토랑 우승상품
- 프로그래머스
- SW Expert Academy
- 프로그래머스 파이썬
- 맥북
- 캐치카페
- ubuntu
- hackerrank
- 파이썬
- 편스토랑
Archives
- Today
- Total
목록
반응형
git pull 에러 (2)
반응형
솜씨좋은장씨
[Git] git pull error: You have not concluded your merge (MERGE_HEAD exists). 해결 방법
코딩 1일 1문제를 풀고 pull을 하려고 하는데 error: You have not concluded your merge (MERGE_HEAD exists). 위와 같은 오류가 발생하며 제대로 pull이 되지않았습니다. 이를 해결하는 방법은 다음과 같습니다. $ git merge --abort 먼저 위의 명령어를 통하여 merge를 취소합니다. 그 다음 충돌한 내용을 해결합니다. $ git status 잘 해결되었는지 확인해본 뒤 $ git pull origin 다시 pull을 해보면 됩니다. 읽어주셔서 감사합니다.
유용한 정보/Git | GitHub
2021. 11. 1. 19:47
[Git] fatal: refusing to merge unrelated histories 해결 방법
로컬 저장소의 프로젝트를 GitHub에서 만든 원격 저장소에 Push를 하려고 할 때 $ git push origin main To github.com:somjang/test-repo.git ! [rejected] main -> main (non-fast-forward) error: failed to push some refs to 'github.com:42maru-ai/hanmi-broker-api.git' hint: Updates were rejected because the tip of your current branch is behind hint: its remote counterpart. Integrate the remote changes (e.g. hint: 'git pull ...') bef..
유용한 정보/Git | GitHub
2021. 10. 2. 20:07
반응형