Git svn fetch: failed to disable the function `check_cherry_pick ', because it was not intended to start with

When starting git svn fetch I click the following error:

 Complex regular subexpression recursion limit (32766) exceeded at /usr/share/perl5/vendor_perl/YAML/Loader.pm line 517, <$IN> line 1. YAML Error: Can't parse double quoted string Code: YAML_PARSE_ERR_BAD_DOUBLE Line: 2 Document: 1 at /usr/share/perl5/vendor_perl/YAML/Loader.pm line 523. Could not unmemoize function `check_cherry_pick', because it was not memoized to begin with at /usr/share/perl5/vendor_perl/Git/SVN.pm line 1639. END failed--call queue aborted at /usr/libexec/git-core/git-svn line 49. 

Something similar happened earlier, and the solution was git svn reset -r N , which is not applicable in this case.

+7
git git-svn
source share
1 answer

Googling led me to the following solution :

 rm -rf .git/svn/.caches 
+17
source share

All Articles