Re: [PATCH] Update git rebase documentation to clarify HEAD behavior

2016-10-27 Thread Philip Oakley
From: "Junio C Hamano" Cody Sehl writes: The first few paragraphs in the git-rebase.txt documentation lay out the steps git takes during a rebase: 1. everything from `..HEAD` is saved to a temporary area 2. `HEAD` is set to `` 3. the changes held in the temporary area are applied one by one

Re: [PATCH] Update git rebase documentation to clarify HEAD behavior

2016-10-26 Thread Junio C Hamano
Cody Sehl writes: > The first few paragraphs in the git-rebase.txt documentation lay out the > steps git takes during a rebase: > 1. everything from `..HEAD` is saved to a temporary area > 2. `HEAD` is set to `` > 3. the changes held in the temporary area are applied one by one in order on > to

[PATCH] Update git rebase documentation to clarify HEAD behavior

2016-10-26 Thread Cody Sehl
The first few paragraphs in the git-rebase.txt documentation lay out the steps git takes during a rebase: 1. everything from `..HEAD` is saved to a temporary area 2. `HEAD` is set to `` 3. the changes held in the temporary area are applied one by one in order on top of the new `HEAD` The second