Xiong Mar
Xiong Mar

Reputation: 11

How to make files no longer ignored by svn and can be checked in?

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

Answers (2)

Xiong Mar
Xiong Mar

Reputation: 11

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

Upvotes: 1

Martin Zeitler
Martin Zeitler

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

Related Questions