Add all unversioned files to Subversion using one Linux command

前端 未结 11 1690
滥情空心
滥情空心 2020-12-23 09:24

Sometimes I include many files in different directories in my project. For now I am adding all files one by one to my project before commit. Is there any Linux terminal comm

11条回答
  •  时光说笑
    2020-12-23 09:48

    This will attempt to add all files - but only actually add the ones that are not already in SVN:

    svn add --force ./* 
    

提交回复
热议问题