6

It seems that svnX silently ignores all *.a files. But I want to add some libraries into repository, how do I do it with svnX?

Dmitriy
  • 5,357
  • 8
  • 45
  • 57

3 Answers3

12

I found that I had to edit my ~/.subversion/config file.

Uncomment the global-ignores line and remove the *.a file type. After that .a files started showing up.

Kendall Trego
  • 1,975
  • 13
  • 21
5

If you only add a *.a file occasionally, open Terminal.app and execute command:

svn add <*.a file path>

If successful, the file will appear in svnX.

jqgsninimo
  • 6,562
  • 1
  • 36
  • 30
0

I am not sure about svnX, but in general you might be able to add them manually by naming them explicitly. This overrides the "ignorance".

glglgl
  • 89,107
  • 13
  • 149
  • 217