aboutsummaryrefslogtreecommitdiffstats
path: root/diffcore-pickaxe.c
AgeCommit message (Expand)AuthorFilesLines
2023-06-21diff.h: remove unnecessary include of oidset.hElijah Newren1-0/+1
2023-02-23pretty.h: move has_non_ascii() declaration from commit.hElijah Newren1-2/+2
2022-10-17diffcore-pickaxe: mark unused parameters in pickaxe functionsJeff King1-2/+2
2021-05-11xdiff-interface: replace discard_hunk_line() with a flagÆvar Arnfjörð Bjarmason1-1/+2
2021-05-11pickaxe -G: don't special-case create/deleteÆvar Arnfjörð Bjarmason1-11/+1
2021-05-11pickaxe -G: terminate early on matching linesÆvar Arnfjörð Bjarmason1-11/+19
2021-05-11xdiff-interface: prepare for allowing early returnÆvar Arnfjörð Bjarmason1-3/+4
2021-05-11pickaxe -S: slightly optimize contains()Ævar Arnfjörð Bjarmason1-3/+10
2021-05-11pickaxe: rename variables in has_changes() for brevityÆvar Arnfjörð Bjarmason1-3/+3
2021-05-11pickaxe -S: support content with NULs under --pickaxe-regexÆvar Arnfjörð Bjarmason1-2/+2
2021-05-11pickaxe: assert that we must have a needle under -G or -SÆvar Arnfjörð Bjarmason1-3/+3
2021-05-11pickaxe: refactor function selection in diffcore-pickaxe()Ævar Arnfjörð Bjarmason1-2/+21
2021-05-11pickaxe/style: consolidate declarations and assignmentsÆvar Arnfjörð Bjarmason1-7/+3
2019-01-14Merge branch 'tb/log-G-binary'Junio C Hamano1-0/+6
2019-01-04Merge branch 'nd/the-index'Junio C Hamano1-2/+2
2018-12-26log -G: ignore binary filesThomas Braun1-0/+6
2018-11-13Merge branch 'jk/xdiff-interface'Junio C Hamano1-1/+2
2018-11-12notes-cache.c: remove the_repository referencesNguyễn Thái Ngọc Duy1-2/+2
2018-11-05diff: avoid generating unused hunk header linesJeff King1-1/+2
2018-11-02xdiff-interface: provide a separate consume callback for hunksJeff King1-1/+1
2018-09-21userdiff.c: remove implicit dependency on the_indexNguyễn Thái Ngọc Duy1-2/+2
2018-09-21diff.c: remove the_index dependency in textconv() functionsNguyễn Thái Ngọc Duy1-2/+2
2018-05-21regex: do not call `regfree()` if compilation failsMartin Ågren1-1/+0
2018-01-04diff: properly error out when combining multiple pickaxe optionsStefan Beller1-1/+0
2018-01-04diffcore: add a pickaxe option to find a specific blobStefan Beller1-18/+27
2018-01-04diff: migrate diff_flags.pickaxe_ignore_case to a pickaxe_opts bitStefan Beller1-3/+3
2017-11-01diff: make struct diff_flags members lowercaseBrandon Williams1-4/+4
2017-11-01diff: remove DIFF_OPT_TST macroBrandon Williams1-4/+4
2017-03-24Merge branch 'js/regexec-buf'Junio C Hamano1-2/+5
2017-03-18pickaxe: fix segfault with '-S<...> --pickaxe-regex'SZEDER Gábor1-2/+5
2016-09-26Merge branch 'js/regexec-buf'Junio C Hamano1-10/+8
2016-09-21regex: use regexec_buf()Johannes Schindelin1-10/+8
2016-07-01diffcore-pickaxe: support case insensitive match on non-asciiNguyễn Thái Ngọc Duy1-0/+11
2016-07-01diffcore-pickaxe: Add regcomp_or_die()Nguyễn Thái Ngọc Duy1-9/+13
2015-09-28react to errors in xdi_diffJeff King1-2/+2
2014-03-24pickaxe: simplify kwset loop in contains()René Scharfe1-5/+2
2014-03-24pickaxe: call strlen only when necessary in diffcore_pickaxe_count()René Scharfe1-2/+1
2014-03-24pickaxe: move pickaxe() after pickaxe_match()René Scharfe1-41/+38
2014-03-24pickaxe: merge diffcore_pickaxe_grep() and diffcore_pickaxe_count() into diff...René Scharfe1-37/+7
2014-03-24pickaxe: honor -i when used with -S and --pickaxe-regexRené Scharfe1-1/+4
2013-07-12Merge branch 'rs/pickaxe-simplify'Junio C Hamano1-7/+4
2013-07-07diffcore-pickaxe: simplify has_changes and containsRené Scharfe1-7/+4
2013-06-03diffcore-pickaxe: make error messages more consistentRamkumar Ramachandra1-2/+2
2013-04-05diffcore-pickaxe: unify code for log -S/-GJeff King1-69/+49
2013-04-05diffcore-pickaxe: fix leaks in "log -S<block>" and "log -G<pattern>"Junio C Hamano1-5/+7
2013-04-05diffcore-pickaxe: port optimization from has_changes() to diff_grep()Junio C Hamano1-1/+6
2013-04-05diffcore-pickaxe: respect --no-textconvSimon Ruderich1-4/+8
2013-04-04diffcore-pickaxe: remove fill_one()Jeff King1-20/+10
2013-04-04diffcore-pickaxe: remove unnecessary call to get_textconv()Simon Ruderich1-9/+14
2012-10-28pickaxe: use textconv for -S countingJeff King1-17/+39
2012-10-28pickaxe: hoist empty needle checkJeff King1-2/+3
2012-10-28diff_grep: use textconv buffers for add/deleted filesJeff King1-2/+2
2012-02-28pickaxe: allow -i to search in patch case-insensitivelyJunio C Hamano1-2/+7
2011-10-07pickaxe: factor out pickaxeRené Scharfe1-67/+43
2011-10-07pickaxe: give diff_grep the same signature as has_changesRené Scharfe1-3/+4
2011-10-07pickaxe: pass diff_options to contains and has_changesRené Scharfe1-14/+14
2011-10-07pickaxe: factor out has_changesRené Scharfe1-36/+21
2011-10-07pickaxe: plug regex/kws leakRené Scharfe1-6/+7
2011-10-07pickaxe: plug regex leakRené Scharfe1-7/+6
2011-10-07pickaxe: plug diff filespec leak with empty needleRené Scharfe1-2/+2
2011-08-20Use kwset in pickaxeFredrik Kuivinen1-11/+23
2010-10-06diffcore-pickaxe.c: a void function shouldn't try to return somethingBrandon Casey1-2/+2
2010-10-06Merge branch 'maint'Junio C Hamano1-2/+1
2010-10-05diffcore-pickaxe.c: remove unnecessary curly bracesBrandon Casey1-2/+1
2010-08-31git log/diff: add -G<regexp> that greps in the patch textJunio C Hamano1-1/+149
2010-08-31diff: pass the entire diff-options to diffcore_pickaxe()Junio C Hamano1-1/+3
2010-05-07Add a macro DIFF_QUEUE_CLEAR.Bo Yang1-2/+1
2009-03-17pickaxe: count regex matches only onceRené Scharfe1-2/+4
2009-03-02diffcore-pickaxe: use memmem()René Scharfe1-10/+8
2007-06-07War on whitespaceJunio C Hamano1-1/+1
2007-05-07diff -S: release the image after looking for needle in itJunio C Hamano1-0/+1
2007-01-25diffcore-pickaxe: fix infinite loop on zero-length needleJeff King1-0/+2
2006-12-20simplify inclusion of system header files.Junio C Hamano1-2/+0
2006-04-04On some platforms, certain headers need to be included before regex.hJohannes Schindelin1-2/+2
2006-04-04Support for pickaxe matching regular expressionsPetr Baudis1-16/+50
2005-07-23[PATCH] diffcore-pickaxe: switch to "counting" behaviour.Junio C Hamano1-6/+17
2005-05-29[PATCH] Do not include unused header files.Junio C Hamano1-1/+0
2005-05-29[PATCH] Optimize diff-tree -[CM] --stdinJunio C Hamano1-1/+1
2005-05-29[PATCH] Add --pickaxe-all to diff-* brothers.Junio C Hamano1-20/+57
2005-05-29[PATCH] Introduce diff_free_filepair() funcion.Junio C Hamano1-1/+1
2005-05-23[PATCH] Performance fix for pickaxe.Junio C Hamano1-1/+2
2005-05-23[PATCH] Rename/copy detection fix.Junio C Hamano1-1/+1
2005-05-22[PATCH] Diffcore updates.Junio C Hamano1-8/+7
2005-05-21[PATCH] The diff-raw format updates.Junio C Hamano1-3/+3
2005-05-21[PATCH] Prepare diffcore interface for diff-tree header supression.Junio C Hamano1-1/+2
2005-05-21[PATCH] Introducing software archaeologist's tool "pickaxe".Junio C Hamano1-0/+56