0

I already tried this link (How to add *.a files into repository using svnX?)

but didn't find *.a file on my working copy folder in svnx

my svnx version 2.0b2 (https://subversion.assembla.com/svn/svnx/html/index.html)

.a file is third party library. therefore I can not modify file extention as bypass I was commit use by eclipse pluggin subversive. but this solution is not convinience.

Community
  • 1
  • 1
Kernelzero
  • 113
  • 13

1 Answers1

0

On MAC OS - OPEN Terminal to execute below

cd pathtoProject

To ADD

then You can either force commit the file using either

*svn add * --force* OR svn add folderpath/file --force

OR change svn config file which would ignore *.a files

To commit svn commit -m "The Commit message"

sushmakn
  • 1
  • 2