Changes between Version 79 and Version 80 of DeveloperGuidelines/Git


Ignore:
Timestamp:
01/02/14 09:45:29 (11 years ago)
Author:
Pat Tressel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • DeveloperGuidelines/Git

    v79 v80  
    4949
    5050# Commit Code (Note, no pushes to GitHub here)
    51 git commit -am "My Story: Part 1"
     51git commit -am "My Changes: Part 1"
    5252.
    5353.
    5454.
    55 git commit -am "My Story: Part N"
     55git commit -am "My Changes: Part N"
    5656
    5757# Pull in changes from trunk
     
    6767git log
    6868
     69# Squash commits
    6970# Use rebase to squash commits to as few as possible to keep revision history clean & make it easier to review the work
    7071# http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html
    71 git rebase -i HEAD~N # Where N = Number of commits
     72git rebase -i HEAD~N # Where N = Number of commits to squash
    7273
    7374# Push to your branch on GitHub