summaryrefslogtreecommitdiff
path: root/dir.c
Commit message (Expand)AuthorAgeFilesLines
* Merge branch 'nd/retire-fnmatch'Junio C Hamano2013-01-251-1/+2
|\
| * wildmatch: support "no FNM_PATHNAME" modeNguyễn Thái Ngọc Duy2013-01-011-1/+1
| * wildmatch: rename constants and update prototypeNguyễn Thái Ngọc Duy2013-01-011-1/+2
* | Merge branch 'as/check-ignore'Junio C Hamano2013-01-231-34/+118
|\ \
| * | dir.c: improve docs for match_pathspec() and match_pathspec_depth()Adam Spiers2013-01-061-12/+26
| * | dir.c: provide clear_directory() for reclaiming dir_struct memoryAdam Spiers2013-01-061-0/+30
| * | dir.c: keep track of where patterns came fromAdam Spiers2013-01-061-6/+20
| * | dir.c: use a single struct exclude_list per source of excludesAdam Spiers2013-01-061-19/+45
* | | Merge branch 'ap/status-ignored-in-ignored-directory'Junio C Hamano2013-01-141-21/+76
|\ \ \
| * | | status: always report ignored tracked directoriesAntoine Pelisse2013-01-071-6/+3
| * | | dir.c: Make git-status --ignored more consistentAntoine Pelisse2013-01-011-20/+78
* | | | Merge branch 'as/dir-c-cleanup'Junio C Hamano2013-01-101-35/+114
|\ \ \ \ | | |/ / | |/| |
| * | | dir.c: rename free_excludes() to clear_exclude_list()Adam Spiers2012-12-281-1/+5
| * | | dir.c: refactor is_path_excluded()Adam Spiers2012-12-281-9/+38
| * | | dir.c: refactor is_excluded()Adam Spiers2012-12-281-9/+29
| * | | dir.c: refactor is_excluded_from_list()Adam Spiers2012-12-281-9/+28
| * | | dir.c: rename excluded() to is_excluded()Adam Spiers2012-12-281-5/+5
| * | | dir.c: rename excluded_from_list() to is_excluded_from_list()Adam Spiers2012-12-281-5/+6
| * | | dir.c: rename path_excluded() to is_path_excluded()Adam Spiers2012-12-281-2/+2
| * | | dir.c: rename cryptic 'which' variable to more consistent nameAdam Spiers2012-12-281-5/+5
| * | | Improve documentation and comments regarding directory traversal APIAdam Spiers2012-12-281-1/+7
* | | | Merge branch 'nd/wildmatch'Junio C Hamano2013-01-101-1/+3
|\ \ \ \ | | |_|/ | |/| |
| * | | Support "**" wildcard in .gitignore and .gitattributesNguyễn Thái Ngọc Duy2012-10-151-1/+3
| |/ /
* | | Merge branch 'jk/pathspec-literal'Junio C Hamano2013-01-051-11/+27
|\ \ \
| * | | add global --literal-pathspecs optionJeff King2012-12-191-6/+19
* | | | pathspec: apply "*.c" optimization from excludeNguyễn Thái Ngọc Duy2012-11-261-2/+16
* | | | pathspec: do exact comparison on the leading non-wildcard partNguyễn Thái Ngọc Duy2012-11-261-1/+17
* | | | pathspec: save the non-wildcard length partNguyễn Thái Ngọc Duy2012-11-191-3/+3
|/ / /
* | | Merge branch 'nd/attr-match-optim-more'Jeff King2012-11-091-66/+126
|\ \ \ | |/ / | | / | |/ |/|
| * attr: more matching optimizations from .gitignoreNguyễn Thái Ngọc Duy2012-10-151-11/+11
| * gitignore: make pattern parsing code a separate functionNguyễn Thái Ngọc Duy2012-10-151-22/+49
| * 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-151-1/+1
| * 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-051-66/+77
| |\
| * \ Merge branch 'jc/ls-files-i-dir' into maintJunio C Hamano2012-07-111-1/+59
| |\ \
* | | | warn_on_inaccessible(): a helper to warn on inaccessible pathsJunio C Hamano2012-08-211-1/+1
* | | | gitignore: report access errors of exclude filesJeff King2012-08-211-2/+4
* | | | Merge branch 'mm/config-xdg'Junio C Hamano2012-07-251-1/+1
|\ \ \ \
| * | | | ignore: make sure we have an xdg path before using itMatthieu Moy2012-07-241-1/+1
* | | | | Merge branch 'mm/config-xdg'Junio C Hamano2012-07-091-1/+6
|\ \ \ \ \ | |/ / / /
| * | | | Let core.excludesfile default to $XDG_CONFIG_HOME/git/ignoreHuynh Khoi Nguyen Nguyen2012-06-251-1/+6
* | | | | Merge branch 'nd/exclude-workaround-top-heavy'Junio C Hamano2012-06-281-66/+77
|\ \ \ \ \ | |/ / / / |/| | | / | | |_|/ | |/| |
| * | | exclude: do strcmp as much as possible before fnmatchNguyễn Thái Ngọc Duy2012-06-071-13/+24
| * | | 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
| |/ /
* | | Merge branch 'jc/ls-files-i-dir'Junio C Hamano2012-06-211-1/+59
|\ \ \ | |/ / |/| / | |/
| * dir.c: make excluded() file scope staticJunio C Hamano2012-06-051-1/+1
| * path_excluded(): update API to less cache-entry centricJunio C Hamano2012-06-051-12/+20