Notice
Recent Posts
Link
Tags
- SSL
- string
- static
- ORM
- 데이터베이스
- Docker
- 스프링부트
- mysql
- spring boot
- spring mvc
- spring security 6
- AWS
- java
- 문자열
- hibernate
- @transactional
- jpa
- spring
- PYTHON
- join
- 1차원 배열
- DI
- springboot
- 프로그래머스
- Django
- sql
- 자바
- nginx
- select
- 스프링
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Archives
개발하는 자몽
[Git Error] fatal: It seems that there is already a rebase-merge directory, ... 본문
Git
[Git Error] fatal: It seems that there is already a rebase-merge directory, ...
jaamong 2023. 4. 15. 18:44커밋을 합치려고 git rebase를 하다가 아래 오류가 발생했다.
fatal: It seems that there is already a rebase-merge directory,
and I wonder if you are in the middle of another rebase.
If that is the case, please try
git rebase (--continue | --abore | --skip)
If that is not the case, please
rm -rf ".git/rebase-merge"
and run me gain.
I am stopping in case you still have something valuable there.
rebase를 하다가 예상치 못하게 vcs를 종료하면 발생한다고 한다. 분명 `:wq` 하고 종료한 것 같았는데, 아니었나 보다...
해결 방법은 아래 명령어를 입력하여 rebase를 그만두고 다시 rebase를 하면 된다.
$ git rebase --quit
'Git' 카테고리의 다른 글
[Git] 서브 모듈을 포함한 레포지토리 클론하기 (0) | 2024.02.09 |
---|---|
[Git] 사라진 커밋(commit) 복원하기 (0) | 2023.04.16 |
[Git] remote에 push한 파일 삭제 (0) | 2022.11.01 |
[Git] .gitignore 적용 안되는 경우 (0) | 2022.10.31 |
IntelliJ Git 연동 (0) | 2022.09.14 |
Comments