Skip to content

Commit

Permalink
Clarify git-rebase example commands.
Browse files Browse the repository at this point in the history
Signed-off-by: Jon Loeliger <jdl@jdl.com>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Jon Loeliger authored and Junio C Hamano committed Mar 18, 2006
1 parent 81ea3ce commit 228382a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Documentation/git-rebase.txt
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Assume the following history exists and the current branch is "topic":
/
D---E---F---G master

From this point, the result of the following commands:
From this point, the result of either of the following commands:

git-rebase master
git-rebase master topic
Expand All @@ -36,7 +36,7 @@ would be:
/
D---E---F---G master

While, starting from the same point, the result of the following
While, starting from the same point, the result of either of the following
commands:

git-rebase --onto master~1 master
Expand All @@ -58,7 +58,7 @@ OPTIONS
<upstream>::
Upstream branch to compare against.

<head>::
<branch>::
Working branch; defaults to HEAD.

Author
Expand Down

0 comments on commit 228382a

Please sign in to comment.