Changes between Version 5 and Version 6 of GitTips


Ignore:
Timestamp:
03/08/2010 03:30:50 AM (14 years ago)
Author:
johnnyg
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GitTips

    v5 v6  
    2929 1. Repeat steps 3-4 as necessary 
    3030 1. PROFIT! 
     31 
     32== Ignore changes in a tracked file == 
     33 
     34To ignore: 
     35 
     36{{{ 
     37#!sh 
     38git update-index --assume-unchanged <tracked-file> 
     39}}} 
     40 
     41To stop ignoring: 
     42 
     43{{{ 
     44#!sh 
     45git update-index --no-assume-unchanged <ignored-tracked-file> 
     46}}}