Skip to content

Commit 4165956

Browse files
Fixing an error in the description of a command
1 parent 66d2711 commit 4165956

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/03-git-branching/sections/rebasing.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ You can take the changes on client that aren't on server (`C8` and `C9`) and rep
7979
$ git rebase --onto master server client
8080
----
8181

82-
This basically says, ``Take the `client` branch, figure out the patches since it diverged from the `master` branch, and replay these patches in the `client` branch as if it was based directly off the `master` branch instead.''
82+
This basically says, ``Take the `client` branch, figure out the patches since it diverged from the `server` branch, and replay these patches in the `client` branch as if it was based directly off the `master` branch instead.''
8383
It's a bit complex, but the result is pretty cool.
8484

8585
.Rebasing a topic branch off another topic branch

0 commit comments

Comments
 (0)