Skip to content
This repository has been archived by the owner on Nov 15, 2024. It is now read-only.

Commit

Permalink
Merge pull request #3 from pborreli/patch-1
Browse files Browse the repository at this point in the history
Fixed typos
  • Loading branch information
topfunky committed Sep 25, 2013
2 parents b0eb615 + d2339b9 commit d00baa9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions text/s2-c09-rebasing.textile
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ This gives us some options, since the rebase can do this at any point - say you

You have three things you can do here, you can either fix the file, run a 'git add' on it and then run a 'git rebase --continue', which will move on to the next patch until it's done. Our second option is to run 'git rebase --abort', which will reset us to what our repo looked like before we tried the rebase. Or, we can run 'git rebase --skip', which will leave this one patch out, abandoning the change forever.

note. Git rebase options for a conflict : *--continue* : trys to keep going once you've resolved it, *--abort* : gives up altogether and returns to the state before the rebase, *--skip* : skips this patch, abandoning it forever
note. Git rebase options for a conflict : *--continue* : tries to keep going once you've resolved it, *--abort* : gives up altogether and returns to the state before the rebase, *--skip* : skips this patch, abandoning it forever

In this case we will simply fix the conflict, run 'git add' on the file and then run 'git rebase --continue' which then makes our history look like this:

Expand Down Expand Up @@ -55,7 +55,7 @@ So we stick with the first message, save and exit the editor.

shell. repo-rebase4.txt

Now we've rebased and instead of three commits on top of our master and having to reconcile a useless conflict, we've just added a single commit with no resolving neccesary:
Now we've rebased and instead of three commits on top of our master and having to reconcile a useless conflict, we've just added a single commit with no resolving necessary:

!bitmap/repo-rebasei2.png!

Expand Down

0 comments on commit d00baa9

Please sign in to comment.