java - Why SVN doesn't commit my external library? -
i know question has ask many times in other context, can't find solution.
why svn doesn't commit external library?
first, i'm working team , don't want add external library each time import project svn. don't work on same computer each times.
second, library created contain link (i add externals jar) j3dcore, j3dutils , vecmath put in folder in project. set native location bin folder (of java 3d) put in project. that, don't have install java 3d each time use new computer. works well, problems there, svn doesn't commit it.
can me please?
try adding files repository before commit.
you have not said svn client using, if using command line, this:
$ svn add lib/j3dcore.jar $ svn add lib/j3dutils.jar $ svn add lib/vecmath .jar $ svn commit -m "added thirdparty jars."
Comments
Post a Comment