Git/squash: Difference between revisions

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< Git
No edit summary
No edit summary
Line 5: Line 5:
   
   
  # squash the commits from feature into your squash branch
  # squash the commits from feature into your squash branch
  $ [[../read-tree|git read-tree]] -m -u feature
  $ [[../read-tree|git read-tree]] -m -u {{arg|feature}}


...where "squash-feature" is just a conventional name for the branch in which you are doing the squashing.
...where <code>squash-feature</code> is just a conventional name for the branch in which you are doing the squashing, and {{arg|feature}} is the name of the branch you're squashing [from].

Revision as of 12:28, 31 October 2018

Notes

Squashing seems to involve something like this:

# Create new branch from master
$ git checkout -b squash-feature

# squash the commits from feature into your squash branch
$ git read-tree -m -u <feature>

...where squash-feature is just a conventional name for the branch in which you are doing the squashing, and <feature> is the name of the branch you're squashing [from].