1

I am new to SVN , when I use this command :

svn stat

, I have a list of files like this : ? file1.java ? file2.java .... Now , I have to to add all of them to server using the command :

svn add file1.java

I wonder if there is a way to add all ? file.java with only 1 command? Thanks!

4

1 回答 1

1

如果您的外壳支持递归通配符(zsh),您可以使用类似的东西

svn add **/file*.java

使用其他 shell,您可能需要制作一些基于find/xargs的命令。

或者你可以使用

svn add .

添加所有内容

于 2013-07-16T10:11:13.840 回答