I want to use this simple command, which is already recursive:
svn add *
The problem is that the shell (ash) does not expand the asterisk to hidden files, i.e. files whose name begin with a dot.
AFAIK, you just can to use:
svn add directory
Every file and subdirectory will be added correctly.
svn: Skipping argument: '.svn' ends in a reserved namesvn: warning: '.' is already under version controlsvn: Path '..' ends in '..', which is unsupported for this operation# svn status ? .test– dash17291 Aug 19 '12 at 15:37svn add *in a directory which already is a working copy usually results in SVN complaining about items already added. Same happens when you "manually" try to add the very same file a second time. – Shi Aug 19 '12 at 16:03