Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to add *.a files into repository using svnX?

Tags:

macos

svn

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?

like image 585
Dmitriy Avatar asked Mar 21 '12 20:03

Dmitriy


2 Answers

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.

like image 72
Kendall Trego Avatar answered Nov 15 '22 06:11

Kendall Trego


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.

like image 42
jqgsninimo Avatar answered Nov 15 '22 06:11

jqgsninimo