Changes between Version 3 and Version 4 of GitTips


Ignore:
Timestamp:
02/23/2010 02:53:21 PM (14 years ago)
Author:
johnnyg
Comment:

added highlighting (somewhat)

Legend:

Unmodified
Added
Removed
Modified
  • GitTips

    v3 v4  
    99 1. Checkout master branch 
    1010{{{ 
     11#!sh 
    1112git checkout master 
    1213}}} 
    1314 1. Make commit 
    1415{{{ 
     16#!sh 
    1517git commit -m "Fixed bug" 
    1618}}} 
    1719 1. Checkout stable branch 
    1820{{{ 
     21#!sh 
    1922git checkout stable 
    2023}}} 
    2124 1. Apply the last commit to master to this branch as well 
    2225{{{ 
     26#!sh 
    2327git format-patch -k --stdout -1 master | git am -3 -k 
    2428}}}