On 9/4/12 5:57 PM, Sumana Harihareswara wrote:
I would love more clarifications from developers to help people decide when to lump commits together into a changeset and when to split things up.
If your commits are going to be touching the same files repeatedly, bundle them up into one large commit (using either --amend or squashing after the fact).
If your commits are going to be touching separate files and there's not a lot of dependency between them, it's probably best to keep them as smaller discreet commits.
Ryan Kaldari