skip to Main Content

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


  1. Chosen as BEST ANSWER

    A workaround is to remove the entire project from repository and import it again with the --no-ignore option.


  2. *.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.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search