Changes between Version 8 and Version 9 of GitTips
- Timestamp:
- 03/26/2010 06:23:44 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
GitTips
v8 v9 29 29 1. Repeat steps 3-4 as necessary 30 30 1. PROFIT! 31 32 === Cherry-pick alternative === 33 34 After you make your first commit, you can then cherry pick this change in other branches. 35 36 {{{ 37 #!sh 38 git checkout stable 39 git cherry-pick <commit id> 40 }}} 31 41 32 42 == Ignore changes in a tracked file ==