Changes between Version 8 and Version 9 of GitTips


Ignore:
Timestamp:
03/26/2010 06:23:44 PM (14 years ago)
Author:
andar
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GitTips

    v8 v9  
    2929 1. Repeat steps 3-4 as necessary 
    3030 1. PROFIT! 
     31 
     32=== Cherry-pick alternative === 
     33 
     34After you make your first commit, you can then cherry pick this change in other branches. 
     35 
     36{{{ 
     37#!sh 
     38git checkout stable 
     39git cherry-pick <commit id> 
     40}}} 
    3141 
    3242== Ignore changes in a tracked file ==