소스 코드를 확인해 볼까요? 코드에 충돌 표시가 없습니다. 방금 전 충돌이 발생했을 때 해결한 코드와 같은 상태가 되었습니다.
infoh@DESKTOP MINGW64 /e/git-rerere (feature)
$ code hello.htm VS Code 실행
hello.htm
<h1>git study</h1>
rerere 기능은 이전 충돌 해결 작업들을 기억하고 있다가 유사한 문제가 발생하면 이를 다시 적용합니다.
이제 리베이스 처리를 완료합시다.
infoh@DESKTOP MINGW64 /e/git-rerere (feature|REBASE 1/1)
$ git add hello.htm 등록
infoh@DESKTOP MINGW64 /e/git-rerere (feature|REBASE 1/1)
$ git rebase --continue 계속 처리
Applying: hello->git
infoh@DESKTOP MINGW64 /e/git-rerere (feature) 리베이스 완료
rerere 기능은 병합과 리베이스로 잦은 충돌이 발생하여 이를 좀 더 손쉽게 해결하고 싶을 때 매우 유용합니다.