aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-03-23 07:36:08 +0100
committerMattias Andrée <maandree@operamail.com>2014-03-23 07:36:08 +0100
commitd267a2c61b320808a12fd46a03dd71c2078ec9dc (patch)
treea56797f9380129e49c1a214526b21f67d54bb705
parentupdate todo (diff)
downloadusing-git-d267a2c61b320808a12fd46a03dd71c2078ec9dc.tar.gz
using-git-d267a2c61b320808a12fd46a03dd71c2078ec9dc.tar.bz2
using-git-d267a2c61b320808a12fd46a03dd71c2078ec9dc.tar.xz
commit splitting
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r--using-git.texinfo55
1 files changed, 54 insertions, 1 deletions
diff --git a/using-git.texinfo b/using-git.texinfo
index 5e584e1..fe58bdf 100644
--- a/using-git.texinfo
+++ b/using-git.texinfo
@@ -1365,8 +1365,8 @@ command.
@menu
* Squash'em:: Merging commits into one
* Think about the children:: Repairing the history of child branches
+* Commit splitting:: Splitting after squashing
@end menu
-@c TODO cherry-pick reset
@@ -1510,6 +1510,59 @@ of @code{squashchild}.
+@node Commit splitting
+@section Commit splitting
+
+You way want to split a commit, after
+you have squashed commits, to make a
+set of commits each representing a
+logical step.
+
+If the commit you want to split is
+named @code{squashed}, you can checkout
+the commit before it and cherry-pick it
+into a new branch:
+
+@example
+git checkout squashed^
+git checkout -b splitted-squashed
+git cherry-pick squashed
+@end example
+
+Then you reset to make so that the
+changes are not staged:
+
+@example
+git reset HEAD^
+@end example
+
+Now you can include the changes you
+want in to first commit and start over
+from the @command{git cherry-pick}
+step and include the changes for the
+second commit and so on until everything
+is included.
+
+When you can created the final commit
+you can save @code{squashed}:
+
+@example
+git checkout squashed
+git checkout -b unsplitted-squashed
+git push -u origin unsplitted-squashed
+@end example
+
+And then update @code{squashed} with
+the commit split:
+
+@example
+git checkout splitted-squashed
+git branch -M splitted-squashed squashed
+git push --force
+@end example
+
+
+
@node Interface
@chapter Interface