Reputation: 21817
What svn command is alternative git add .
?
Thank you.
Upvotes: 1
Views: 187
Reputation: 46667
svn add .
If you've got existing files and directories already in the repository, you probably want svn add --force .
to make subversion continue to recurse through already-added directories.
Upvotes: 2