• J
    Add 'filter' attribute and external filter driver definition. · aa4ed402
    Junio C Hamano 提交于
    The interface is similar to the custom low-level merge drivers.
    
    First you configure your filter driver by defining 'filter.<name>.*'
    variables in the configuration.
    
    	filter.<name>.clean	filter command to run upon checkin
    	filter.<name>.smudge	filter command to run upon checkout
    
    Then you assign filter attribute to each path, whose name
    matches the custom filter driver's name.
    
    Example:
    
    	(in .gitattributes)
    	*.c	filter=indent
    
    	(in config)
    	[filter "indent"]
    		clean = indent
    		smudge = cat
    Signed-off-by: NJunio C Hamano <junkio@cox.net>
    aa4ed402
t0021-conversion.sh 957 字节