diff options
| author | Alex Galvin <agalvin@comqi.com> | 2024-07-18 20:47:36 +0000 |
|---|---|---|
| committer | Junio C Hamano <gitster@pobox.com> | 2024-07-18 15:48:06 -0700 |
| commit | 5c5877b93ce75b149747c5dc32530222e8247d63 (patch) | |
| tree | ff665a34dea389765223640813aac3133661d44c /perl/Git | |
| parent | d19b6cd2dd72dc811f19df4b32c7ed223256c3ee (diff) | |
| download | git-5c5877b93ce75b149747c5dc32530222e8247d63.tar.gz | |
git-svn: add public property `svn:global-ignores`
Subversion 1.8 added a new property `svn:global-ignores`. It
contains a list of patterns used to determine what files should
be ignored. If Git-SVN is going to ignore these files as well, it
is important that we do not skip over directories that have this
property set.
Signed-off-by: Alex Galvin <agalvin@comqi.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'perl/Git')
| -rw-r--r-- | perl/Git/SVN.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl/Git/SVN.pm b/perl/Git/SVN.pm index 7721708ce5..b0913ca1b6 100644 --- a/perl/Git/SVN.pm +++ b/perl/Git/SVN.pm @@ -763,7 +763,7 @@ sub prop_walk { # this needs to be updated. ++$interesting_props if /^svn:(?:ignore|keywords|executable |eol-style|mime-type - |externals|needs-lock)$/x; + |externals|needs-lock|global-ignores)$/x; } &$sub($self, $p, $props) if $interesting_props; |
