반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Mac
- math
- list
- gas
- array
- PySpark
- Kotlin
- PostgreSQL
- GIT
- Tkinter
- Redshift
- Google Spreadsheet
- c#
- Python
- Github
- hive
- Excel
- matplotlib
- Apache
- google apps script
- 파이썬
- string
- Java
- SQL
- PANDAS
- dataframe
- numpy
- django
- Google Excel
Archives
- Today
- Total
달나라 노트
Github - git에서 merge 취소하기 (git merge --abort) 본문
728x90
반응형
git을 사용하다보면 여러 개의 branch를 하나로 합치거나, 다른 remote repository로부터 pull을 하고 merge를 하는등 여러 merge를 하는 상황이 발생할 수 있습니다.
하지만 branch들의 수정사항이 충돌하여 merge가 실패하는 등 여러가지 사유로 merge에 실패할 때가 있습니다.
이런 경우 실패 원인을 찾아 해결할 수도 있지만, 진행중인 merge가 있는 경우는 commit, push 등이 불가한 경우가 있어서 현재 진행중인 merge 자체를 취소해야할 때가 있죠.
git merge error 예시
Automatic merge failed; fix conflicts and then commit the result.
git merge error 예시
Automatic merge failed; fix conflicts and then commit the result.
이런 경우 아래 명령어를 사용할 수 있습니다.
git merge --abort
위 명령어를 사용하면 현재 진행중인 merge를 모두 삭제하고 merge를 시도하기 전으로 되돌립니다.
728x90
반응형
'Github' 카테고리의 다른 글
Github - git log graph 보기 (git log --oneline --graph) (0) | 2021.05.12 |
---|---|
Github - Branch 관리 (Branch 생성, 이동, 병합 삭제) (0) | 2021.05.12 |
Github - Branch 생성과 branch 목록조회 (0) | 2021.05.11 |
Github - remote repository (리모트 저장소) (0) | 2021.05.10 |
17. git rm --cached -r file_name (github에 올린 파일 제거하기) (0) | 2021.01.15 |
Comments