Add all unversioned files to Subversion using one Linux command

前端 未结 11 1766
滥情空心
滥情空心 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:40

    By default, the svn add command is recursive. Just point it at the top-level directory of your project and it should add any file not already there.

    You may want to include the --force option, though keep in mind that this will also add files which are otherwise excluded due to svn:ignore (if you don't use svn:ignore, then you won't have any issues).

提交回复
热议问题