feature 브랜치에 커밋합니다.
infoh@DESKTOP MINGW64 /e/git-rerere (feature)
$ git commit -am "hello->git" 등록 및 커밋
[feature c0f2810] hello->git
1 file changed, 1 insertion(+), 1 deletion(-)
이제 다시 원본 master 브랜치로 이동합니다.
infoh@DESKTOP-VAKLOFQ MINGW64 /e/jinygit/git-rerere (feature)
$ git checkout master 브랜치 이동
Switched to branch 'master'
infoh@DESKTOP MINGW64 /e/git-rerere (master)
충돌을 위해 hello.htm 파일에서 같은 위치의 코드를 수정합니다.
infoh@DESKTOP-VAKLOFQ MINGW64 /e/jinygit/git-rerere (feature)
$ code hello.htm VS Code 실행
hello.htm
<h1>hello study</h1>
infoh@DESKTOP-VAKLOFQ MINGW64 /e/jinygit/git-rerere (master)
$ git commit -am "world->study" 등록 및 커밋
[master 9b9ac61] world->study
1 file changed, 1 insertion(+), 1 deletion(-)