Reputation: 11
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.
Upvotes: 0
Views: 45
Reputation: 11
A workaround is to remove the entire project from repository and import it again with the --no-ignore
option.
Upvotes: 1
Reputation: 76859
*.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
.
Upvotes: 1