Git/squash
< Git
Jump to navigation
Jump to search
Revision as of 12:25, 31 October 2018 by Woozle (talk | contribs) (Created page with "==Notes== Squashing seems to involve something like this: # Create new branch from master $ git checkout -b squash-feature # squash the commits from featu...")
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