From 950e9fc3fc505a6800bb37359c305d8d993ba0c2 Mon Sep 17 00:00:00 2001 From: lethee Date: Wed, 5 Mar 2025 10:49:39 +0900 Subject: [PATCH] fix #116 description of rebase thanks to @roo0t, @haha4825 --- book/03-git-branching/sections/rebasing.asc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/book/03-git-branching/sections/rebasing.asc b/book/03-git-branching/sections/rebasing.asc index b6225fa..780d9a2 100644 --- a/book/03-git-branching/sections/rebasing.asc +++ b/book/03-git-branching/sections/rebasing.asc @@ -49,7 +49,7 @@ In Git, this is called _rebasing_. With the `rebase` command, you can take all the changes that were committed on one branch and replay them on another one.(((git commands, rebase))) ////////////////////////// -비슷한 결과를 만드는 다른 방식으로, `C3` 에서 변경된 사항을 Patch로 만들고 이를 다시 `C4` 에 적용시키는 방법이 있다. +비슷한 결과를 만드는 다른 방식으로, `C4` 에서 변경된 사항을 Patch로 만들고 이를 다시 `C3` 에 적용시키는 방법이 있다. Git에서는 이런 방식을 _Rebase_ 라고 한다. `rebase` 명령으로 한 브랜치에서 변경된 사항을 다른 브랜치에 적용할 수 있다.(((git commands, rebase)))