summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* wildmatch: support "no FNM_PATHNAME" modeNguyễn Thái Ngọc Duy2013-01-015-7/+42
* wildmatch: make dowild() take arbitrary flagsNguyễn Thái Ngọc Duy2013-01-011-7/+6
* wildmatch: rename constants and update prototypeNguyễn Thái Ngọc Duy2013-01-014-55/+62
* wildmatch: replace variable 'special' with better named onesNguyễn Thái Ngọc Duy2013-01-011-9/+9
* compat/fnmatch: respect NO_FNMATCH* even on glibcNguyễn Thái Ngọc Duy2013-01-011-1/+2
* wildmatch: fix "**" special caseNguyễn Thái Ngọc Duy2013-01-012-2/+3
* t3070: Disable some failing fnmatch testsRamsay Jones2012-12-151-3/+3
* test-wildmatch: avoid Windows path manglingNguyễn Thái Ngọc Duy2012-11-202-5/+13
* Support "**" wildcard in .gitignore and .gitattributesNguyễn Thái Ngọc Duy2012-10-154-1/+77
* wildmatch: make /**/ match zero or more directoriesNguyễn Thái Ngọc Duy2012-10-152-1/+19
* wildmatch: adjust "**" behaviorNguyễn Thái Ngọc Duy2012-10-153-8/+16
* wildmatch: fix case-insensitive matchingNguyễn Thái Ngọc Duy2012-10-151-0/+2
* wildmatch: remove static variable force_lower_caseNguyễn Thái Ngọc Duy2012-10-153-20/+8
* wildmatch: make wildmatch's return value compatible with fnmatchNguyễn Thái Ngọc Duy2012-10-152-11/+14
* t3070: disable unreliable fnmatch testsNguyễn Thái Ngọc Duy2012-10-151-43/+43
* Integrate wildmatch to gitNguyễn Thái Ngọc Duy2012-10-156-166/+210
* wildmatch: follow Git's coding conventionNguyễn Thái Ngọc Duy2012-10-151-146/+146
* wildmatch: remove unnecessary functionsNguyễn Thái Ngọc Duy2012-10-152-156/+10
* Import wildmatch from rsyncNguyễn Thái Ngọc Duy2012-10-153-0/+539
* ctype: support iscntrl, ispunct, isxdigit and isprintNguyễn Thái Ngọc Duy2012-10-152-5/+21
* ctype: make sane_ctype[] const arrayNguyễn Thái Ngọc Duy2012-10-152-2/+2
* attr: more matching optimizations from .gitignoreNguyễn Thái Ngọc Duy2012-10-155-32/+64
* gitignore: make pattern parsing code a separate functionNguyễn Thái Ngọc Duy2012-10-152-23/+50
* exclude: split pathname matching code into a separate functionNguyễn Thái Ngọc Duy2012-10-151-32/+53
* exclude: fix a bug in prefix compare optimizationNguyễn Thái Ngọc Duy2012-10-152-1/+7
* exclude: split basename matching code into a separate functionNguyễn Thái Ngọc Duy2012-10-151-13/+24
* exclude: stricten a length check in EXC_FLAG_ENDSWITH caseNguyễn Thái Ngọc Duy2012-10-151-2/+3
* Merge commit 'f9f6e2c' into nd/attr-match-optim-moreJunio C Hamano2012-10-052-67/+78
|\
| * exclude: do strcmp as much as possible before fnmatchNguyễn Thái Ngọc Duy2012-06-072-14/+25
| * dir.c: get rid of the wildcard symbol set in no_wildcard()Nguyễn Thái Ngọc Duy2012-06-071-16/+16
| * Unindent excluded_from_list()Nguyễn Thái Ngọc Duy2012-05-291-48/+48
* | attr: avoid searching for basename on every matchNguyễn Thái Ngọc Duy2012-10-051-6/+9
* | attr: avoid strlen() on every matchNguyễn Thái Ngọc Duy2012-10-051-2/+4
* | Git 1.7.11.7v1.7.11.7maint-1.7.11Junio C Hamano2012-09-144-3/+50
* | Merge branch 'jk/maint-quiet-is-synonym-to-s-in-log' into maint-1.7.11Junio C Hamano2012-09-142-1/+13
|\ \
| * | log: fix --quiet synonym for -sJeff King2012-08-282-1/+13
* | | Merge branch 'jc/maint-ident-missing-human-name' into maint-1.7.11Junio C Hamano2012-09-142-3/+20
|\ \ \
| * | | split_ident_line(): make best effort when parsing author/committer lineJunio C Hamano2012-08-312-3/+20
| |/ /
* | | Merge branch 'rj/test-regex' into maint-1.7.11Junio C Hamano2012-09-144-0/+27
|\ \ \
| * | | test-regex: Add a test to check for a bug in the regex routinesRamsay Jones2012-09-024-0/+27
* | | | Merge branch 'da/gitk-reload-tag-contents' into maint-1.7.11Junio C Hamano2012-09-141-8/+9
|\ \ \ \
| * | | | gitk: Rename 'tagcontents' to 'cached_tagcontent'David Aguilar2012-09-081-7/+7
| * | | | gitk: Teach "Reread references" to reload tagsDavid Aguilar2012-09-081-1/+2
| * | | | gitk: Avoid Meta1-F5Felipe Contreras2012-04-251-2/+2
* | | | | Merge branch 'jc/maint-checkout-fileglob-doc' into maint-1.7.11Junio C Hamano2012-09-142-1/+30
|\ \ \ \ \
| * | | | | gitcli: contrast wildcard given to shell and to gitJunio C Hamano2012-09-101-0/+17
| * | | | | gitcli: formatting fixJunio C Hamano2012-09-101-1/+1
| * | | | | Document file-glob for "git checkout -- '*.c'"Junio C Hamano2012-09-041-0/+12
* | | | | | Merge branch 'jc/apply-binary-p0' into maint-1.7.11Junio C Hamano2012-09-122-46/+76
|\ \ \ \ \ \
| * | | | | | apply: compute patch->def_name correctly under -p0Junio C Hamano2012-08-242-46/+76