summaryrefslogtreecommitdiff
path: root/convert.c
AgeCommit message (Expand)AuthorFilesLines
2011-09-02Merge branch 'tr/maint-ident-to-git-memmove'Libravatar Junio C Hamano1-2/+2
2011-08-29Use memmove in ident_to_gitLibravatar Thomas Rast1-2/+2
2011-08-04Rename git_checkattr() to git_check_attr()Libravatar Michael Haggerty1-1/+1
2011-05-26streaming: filter cascadingLibravatar Junio C Hamano1-14/+112
2011-05-26streaming filter: ident filterLibravatar Junio C Hamano1-8/+169
2011-05-26Add LF-to-CRLF streaming conversionLibravatar Junio C Hamano1-0/+41
2011-05-26stream filter: add "no more input" to the filtersLibravatar Junio C Hamano1-1/+5
2011-05-26Add streaming filter APILibravatar Junio C Hamano1-7/+77
2011-05-20convert: CRLF_INPUT is a no-op in the output codepathLibravatar Junio C Hamano1-1/+1
2011-05-20streaming_write_entry(): use streaming API in write_entry()Libravatar Junio C Hamano1-0/+23
2011-05-09convert: make it harder to screw up adding a conversion attributeLibravatar Junio C Hamano1-41/+38
2011-05-09convert: make it safer to add conversion attributesLibravatar Junio C Hamano1-26/+22
2011-05-09convert: give saner names to crlf/eol variables, types and functionsLibravatar Junio C Hamano1-30/+31
2011-05-09convert: rename the "eol" global variable to "core_eol"Libravatar Junio C Hamano1-2/+2
2011-03-16enums: omit trailing comma for portabilityLibravatar Jonathan Nieder1-1/+1
2010-12-22convert filter: supply path to external driverLibravatar Pete Wyckoff1-1/+22
2010-07-02Don't expand CRLFs when normalizing text during mergeLibravatar Eyvind Bernhardsen1-7/+20
2010-07-02Avoid conflicts when merging branches with mixed normalizationLibravatar Eyvind Bernhardsen1-2/+14
2010-06-21Merge branch 'eb/core-eol'Libravatar Junio C Hamano1-40/+110
2010-06-21Merge branch 'fg/autocrlf'Libravatar Junio C Hamano1-0/+49
2010-06-21Merge branch 'gv/portable'Libravatar Junio C Hamano1-1/+3
2010-06-06Add "core.eol" config variableLibravatar Eyvind Bernhardsen1-24/+36
2010-05-31Rewrite dynamic structure initializations to runtime assignmentLibravatar Gary V. Vaughan1-1/+3
2010-05-19Rename the "crlf" attribute "text"Libravatar Eyvind Bernhardsen1-8/+15
2010-05-19Add per-repository eol normalizationLibravatar Eyvind Bernhardsen1-33/+84
2010-05-11autocrlf: Make it work also for un-normalized repositoriesLibravatar Finn Arne Gangstad1-0/+49
2010-04-10convert: Keep foreign $Id$ on checkout.Libravatar Henrik Grubbström1-2/+14
2010-04-10convert: Safer handling of $Id$ contraction.Libravatar Henrik Grubbström1-0/+12
2010-02-05Merge branch 'sp/maint-push-sideband' into sp/push-sidebandLibravatar Junio C Hamano1-2/+3
2010-02-05run-command: support custom fd-set in asyncLibravatar Erik Faye-Lund1-2/+3
2010-01-20Merge branch 'jc/conflict-marker-size'Libravatar Junio C Hamano1-3/+3
2010-01-16git_attr(): fix function signatureLibravatar Junio C Hamano1-3/+3
2010-01-05run-command: convert simple callsites to use_shellLibravatar Jeff King1-1/+2
2009-07-05run_command: return exit code as positive valueLibravatar Johannes Sixt1-1/+1
2008-10-12Replace calls to strbuf_init(&foo, 0) with STRBUF_INIT initializerLibravatar Brandon Casey1-2/+1
2008-07-11Fixed text file auto-detection: treat EOF character 032 at the end of file as...Libravatar Dmitry Kakurin1-0/+4
2008-07-05convert.c: Use 'git_config_string' to get 'smudge' and 'clean'Libravatar Brian Hetro1-16/+9
2008-05-14Provide git_config with a callback-data parameterLibravatar Johannes Schindelin1-2/+2
2008-02-16Merge branch 'sp/safecrlf'Libravatar Junio C Hamano1-6/+41
2008-02-11convert.c: guard config parser from value=NULLLibravatar Junio C Hamano1-2/+2
2008-02-06safecrlf: Add mechanism to warn about irreversible crlf conversionsLibravatar Steffen Prohaska1-6/+41
2008-01-16treat any file with NUL as binaryLibravatar Dmitry Potapov1-2/+7
2007-10-21Use the asyncronous function infrastructure to run the content filter.Libravatar Johannes Sixt1-33/+28
2007-10-21Avoid a dup2(2) in apply_filter() - start_command() can do it for us.Libravatar Johannes Sixt1-4/+3
2007-10-21Use start_command() to run content filters instead of explicit fork/exec.Libravatar Johannes Sixt1-23/+7
2007-10-15Fix in-place editing functions in convert.cLibravatar Pierre Habouzit1-7/+10
2007-09-29strbuf change: be sure ->buf is never ever NULL.Libravatar Pierre Habouzit1-2/+2
2007-09-18Use xmemdupz() in many places.Libravatar Pierre Habouzit1-6/+1
2007-09-16Now that cache.h needs strbuf.h, remove useless includes.Libravatar Pierre Habouzit1-1/+0
2007-09-16Rewrite convert_to_{git,working_tree} to use strbuf's.Libravatar Pierre Habouzit1-243/+171