Git Rebase and Squash


/ Published in: Bash
Save to your folder(s)

Combine multiple smaller incremental commits into larger ones, perfect for encouraging you to commit often while enabling you to summarize a day's work into one, or more, simplified commit.

WARNING: Only do this on commits that haven’t been pushed an external repository.


Copy this code and paste it in your HTML
  1. git rebase -i HEAD~4
  2.  
  3. # The ~4 in the command designates the number of commits that you wish to combine
  4. # the command will open up a text editor from wich you can choose which commits
  5. # to 'pick' and which to 'squash'. save and close, then you'll have a chance to edit
  6. # the individual commit messages. save and close that and you're done. squashed.

URL: http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.