Changes between Version 73 and Version 74 of DeveloperGuidelines/Git


Ignore:
Timestamp:
09/27/13 05:29:11 (11 years ago)
Author:
Michael Howden
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Git

    v73 v74  
    6464git commit -a
    6565
    66 # Squash commits to as few as possible to keep revision history clean & make it easier to review the work
     66# Review commits
     67git log
     68
     69# Use rebase to squash commits to as few as possible to keep revision history clean & make it easier to review the work
    6770# http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html
    68 git rebase -i
     71git rebase -i HEAD~N # Where N = Number of commits
    6972
    7073# Push to your branch on GitHub