summaryrefslogtreecommitdiff
path: root/pathspec.h
AgeCommit message (Expand)AuthorFilesLines
2021-07-16Merge branch 'ds/gender-neutral-doc'Libravatar Junio C Hamano1-1/+1
2021-06-16comments: avoid using the gender of our usersLibravatar Felipe Contreras1-1/+1
2021-05-07Merge branch 'mt/add-rm-in-sparse-checkout'Libravatar Junio C Hamano1-2/+16
2021-04-14*: remove 'const' qualifier for struct index_stateLibravatar Derrick Stolee1-3/+3
2021-04-08add: warn when asked to update SKIP_WORKTREE entriesLibravatar Matheus Tavares1-0/+8
2021-04-08pathspec: allow to ignore SKIP_WORKTREE entries on index matchingLibravatar Matheus Tavares1-2/+8
2019-12-16Merge branch 'hw/doc-in-header'Libravatar Junio C Hamano1-1/+34
2019-11-20pathspec: add new function to parse fileLibravatar Alexandr Miloslavskiy1-0/+10
2019-11-18pathspec: move doc to pathspec.hLibravatar Heba Waly1-1/+34
2018-11-19dir.c: move, rename and export match_attrs()Libravatar Nguyễn Thái Ngọc Duy1-0/+3
2018-11-19pathspec.h: clean up "extern" in function declarationsLibravatar Nguyễn Thái Ngọc Duy1-12/+12
2018-08-15Add missing includes and forward declarationsLibravatar Elijah Newren1-0/+2
2017-12-19Merge branch 'bw/pathspec-match-submodule-boundary'Libravatar Junio C Hamano1-0/+1
2017-12-05pathspec: only match across submodule boundaries when requestedLibravatar Brandon Williams1-0/+1
2017-09-21pathspec doc: parse_pathspec does not maintain references to argsLibravatar Jonathan Nieder1-0/+7
2017-05-12pathspec: convert find_pathspecs_matching_against_index to take an indexLibravatar Brandon Williams1-2/+5
2017-05-12pathspec: remove PATHSPEC_STRIP_SUBMODULE_SLASH_CHEAPLibravatar Brandon Williams1-6/+4
2017-05-12pathspec: remove PATHSPEC_STRIP_SUBMODULE_SLASH_EXPENSIVE flagLibravatar Brandon Williams1-11/+3
2017-03-13pathspec: allow querying for attributesLibravatar Brandon Williams1-1/+14
2017-01-08pathspec: copy and free owned memoryLibravatar Brandon Williams1-2/+2
2017-01-08pathspec: remove the deprecated get_pathspec functionLibravatar Brandon Williams1-1/+0
2016-09-21Merge branch 'bw/pathspec-remove-unused-extern-decl'Libravatar Junio C Hamano1-2/+0
2016-09-13pathspec: remove unnecessary function prototypesLibravatar Brandon Williams1-2/+0
2016-06-02pathspec: rename free_pathspec() to clear_pathspec()Libravatar Junio C Hamano1-2/+2
2013-12-06Support pathspec magic :(exclude) and its short form :!Libravatar Nguyễn Thái Ngọc Duy1-1/+3
2013-10-28pathspec: stop --*-pathspecs impact on internal parse_pathspec() usesLibravatar Nguyễn Thái Ngọc Duy1-0/+7
2013-09-09Merge branch 'nd/magic-pathspec'Libravatar Junio C Hamano1-1/+1
2013-07-15parse_pathspec: accept :(icase)path syntaxLibravatar Nguyễn Thái Ngọc Duy1-1/+21
2013-07-15pathspec: support :(glob) syntaxLibravatar Nguyễn Thái Ngọc Duy1-1/+3
2013-07-15pathspec: support :(literal) syntax for noglob pathspecLibravatar Nguyễn Thái Ngọc Duy1-1/+3
2013-07-15kill limit_pathspec_to_literal() as it's only used by parse_pathspec()Libravatar Nguyễn Thái Ngọc Duy1-2/+0
2013-07-15parse_pathspec: make sure the prefix part is wildcard-freeLibravatar Nguyễn Thái Ngọc Duy1-1/+1
2013-07-15rename field "raw" to "_raw" in struct pathspecLibravatar Nguyễn Thái Ngọc Duy1-1/+1
2013-07-15remove match_pathspec() in favor of match_pathspec_depth()Libravatar Nguyễn Thái Ngọc Duy1-2/+2
2013-07-15remove init_pathspec() in favor of parse_pathspec()Libravatar Nguyễn Thái Ngọc Duy1-1/+0
2013-07-15check-ignore: convert to use parse_pathspecLibravatar Nguyễn Thái Ngọc Duy1-0/+1
2013-07-15guard against new pathspec magic in pathspec matching codeLibravatar Nguyễn Thái Ngọc Duy1-0/+7
2013-07-15parse_pathspec: support prefixing original patternsLibravatar Nguyễn Thái Ngọc Duy1-0/+1
2013-07-15parse_pathspec: support stripping/checking submodule pathsLibravatar Nguyễn Thái Ngọc Duy1-0/+10
2013-07-15parse_pathspec: support stripping submodule trailing slashesLibravatar Nguyễn Thái Ngọc Duy1-0/+2
2013-07-15parse_pathspec: add special flag for max_depth featureLibravatar Nguyễn Thái Ngọc Duy1-1/+5
2013-07-15parse_pathspec: add PATHSPEC_PREFER_{CWD,FULL} flagsLibravatar Nguyễn Thái Ngọc Duy1-0/+4
2013-07-15parse_pathspec: save original pathspec for reportingLibravatar Nguyễn Thái Ngọc Duy1-0/+1
2013-07-15add parse_pathspec() that converts cmdline args to struct pathspecLibravatar Nguyễn Thái Ngọc Duy1-0/+11
2013-07-15pathspec: add copy_pathspecLibravatar Nguyễn Thái Ngọc Duy1-0/+1
2013-07-15move struct pathspec and related functions to pathspec.[ch]Libravatar Nguyễn Thái Ngọc Duy1-0/+21
2013-01-06add.c: extract new die_if_path_beyond_symlink() for reuseLibravatar Adam Spiers1-0/+1
2013-01-06add.c: extract check_path_for_gitlink() from treat_gitlinks() for reuseLibravatar Adam Spiers1-0/+1
2013-01-06pathspec.c: rename newly public functions for clarityLibravatar Adam Spiers1-2/+2
2013-01-06add.c: move pathspec matchers into new pathspec.c for reuseLibravatar Adam Spiers1-0/+7