将所有新文件添加到svn存储库

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将所有新文件添加到svn存储库相关的知识,希望对你有一定的参考价值。

  1. Whippy posts on May 15, 2009 at 07:04
  2. To get the 'A' status, the file must already be added. You need to match a '?'. Here is what I use:
  3.  
  4. svn status | grep -v "^.[ ]*..*" | grep "^?" | awk '{print $2}' | xargs svn add
  5. svn commit
  6.  
  7. The first grep gets rid of any hidden files (which may be present if you use IDEs such as Zend studio).
  8. The second grep makes sure you only get files that are currently of unknown status (ie the new ones).
  9. awk grabs the file names.
  10. xargs passes the file names as parameters to svn add.

以上是关于将所有新文件添加到svn存储库的主要内容,如果未能解决你的问题,请参考以下文章

SVN 加载新存储库

将文件添加到 Xcode 项目 (SVN)

将所有新文件添加到SVN repo

当我在存储库中丢失一些修订时,如何转储所有 svn 数据?

svnadd.groovy公司将所有svn新状态文件添加到工作目录

将文件添加到已设置的 svn 存储库