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?
Asked
Active
Viewed 4,607 times
3 Answers
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
-
1but where we found ~/.subversion/config file? – Sachin Kumaram Jun 07 '12 at 05:51
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