How to Clone & Commit in SVN

the SVN ops that I need

I don't frequently work with SVN, but when I have to, I need the following commands to do my basic operations.

Clone SVN repo

svn co --username=YOURUSERNAME SVN_REPO_URL

Commit changes

Step 1 | Add all changes

svn add --force * --auto-props --parents --depth infinity -q

or

svn add * --force

Step 2 | Commit all changes

svn commit -m "MyCommit"

Last updated