Changes between Version 73 and Version 74 of DeveloperGuidelines/Git
- Timestamp:
- 09/27/13 05:29:11 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelines/Git
v73 v74 64 64 git commit -a 65 65 66 # Squash commits to as few as possible to keep revision history clean & make it easier to review the work 66 # Review commits 67 git 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 67 70 # http://gitready.com/advanced/2009/02/10/squashing-commits-with-rebase.html 68 git rebase -i 71 git rebase -i HEAD~N # Where N = Number of commits 69 72 70 73 # Push to your branch on GitHub