Mittwoch, 26. August 2009

svn add recursive

Normally, the command svn add * will skip over any directories that are already under version control. Sometimes, however, you may want to add every unversioned object in your working copy, including those hiding deeper down. Passing the --force option makes svn add recurse into versioned directories:

$ svn add * --force
A foo.c
A somedir/bar.c
A otherdir/docs/baz.doc

Quelle: http://svnbook.red-bean.com/en/1.1/re01.html

Keine Kommentare: