show/hide this revision's text 2 deleted 21 characters in body

To start things off, my

My favorite feature is interactive rebase back to the last upstream commit. This allows me to edit, merge(squash), and drop all of the commits I haven't pushed upstream yet, before I do so. Since I work on top of svn, my workflow looks something like:

git rebase -i svn/working_branch
<edit/squash/drop/etc>

This gives me a list of all of the changes I have on this branch that aren't in svn. I repeat the above as necessary, often doing squashes and reordering in multiple steps to reduce the impact of merges and keep myself sane. When I'm satisfied my commits are clear and coherent, then I do one final unit test run before I dcommit.

show/hide this revision's text 1

To start things off, my favorite feature is interactive rebase back to the last upstream commit. This allows me to edit, merge(squash), and drop all of the commits I haven't pushed upstream yet, before I do so. Since I work on top of svn, my workflow looks something like:

git rebase -i svn/working_branch
<edit/squash/drop/etc>

This gives me a list of all of the changes I have on this branch that aren't in svn. I repeat the above as necessary, often doing squashes and reordering in multiple steps to reduce the impact of merges and keep myself sane. When I'm satisfied my commits are clear and coherent, then I do one final unit test run before I dcommit.