SVN won't import *.a library

后端 未结 6 1681
抹茶落季
抹茶落季 2020-12-25 12:36

I\'ve got a compiled static library (with an \"a\" extension) I want to include in my SVN repository but adding it never works (no problems adding other types of items). If

6条回答
  •  北荒
    北荒 (楼主)
    2020-12-25 13:08

    We can add library on svn:

    svn add library.a --no-ignore
    

    After add svn need to be update:

    svn update
    

    Commit changes on svn using:

    svn commit -m "library.a added on svn"
    

提交回复
热议问题