I imported a project into a Subversion repository with import command and found many .a files were ignored automatically. I want to import them again but have not found a easy way.
The svn version is 1.14.1 (r1886195) and OS is Ubuntu 22.04 LTS.
I imported a project into a Subversion repository with import command and found many .a files were ignored automatically. I want to import them again but have not found a easy way.
The svn version is 1.14.1 (r1886195) and OS is Ubuntu 22.04 LTS.
2
Answers
A workaround is to remove the entire project from repository and import it again with the
--no-ignore
option.*.a
might be defined as a global ignore pattern; where the file location might vary:https://subversion.apache.org/docs/release-notes/1.8.html#repos-dictated-config
Most likely that’s
svn:global-ignores
.