I have a situation where I am working on two different projects on a particular branch. I have finished project "A", committed the change, and pushed the change up to the remote. This change "A" is currently under review so it hasn't been merged yet to the branch. Meanwhile I have started working on an unrelated change for another project in the same branch, call this change "B". I have finished coding this change as well and I'm ready to commit and push this. But I'm not sure how this should be done since change "A" hasn't been merged yet. How can I push these two changes "A" and "B" as separate changes that don't depend on each other?
|
feedback
|
|
First you need to identify the commit that will be the common parent of Change A and B. As you have described it, this is the parent of commit A. Use Now checkout this commit, which we are going to use as the head of a new branch for Change B.
Next create a new branch from it, where we will commit the B changes.
Finally, use Now you will have your original branch with A, and a new branch with B, sharing the history up to the parent of A. Closing remark: if you had already committed B and made a branch for it (and had it checked out) you could have done the rebase one-liner mentioned in the other answer:
| |||||
feedback
|
|
Essentially the same result as Shelhamer's response; but you can use
This will essentially 'pick-up' everything on branch B from A onwards and will move it so it's based off the master. Then just | |||
|
feedback
|
git checkout parent_commitwhere parent_commit = the commit hash checks out the state of the repo at that commit, and the followinggit checkout -b commitBcreates the new branch from it. – shelhamer Jul 7 '11 at 21:54