Hello, all! This is a continuation of my Secure-Shell Reference Sheet series. This one focuses on interacting with subversion (svn) on a remote/local Linux server.
Check out the others:
Secure-Shell (SSH) Reference Sheet – Basic
Secure-Shell (SSH) Reference Sheet – Database
Check the status of all files
{code}svn st{/code} or {code}svn status{/code}
Add files to subversion
{code}svn add *folder/file.php* *another-folder/file2.php*{/code} or {code}svn add *.php{/code}
Note: Using svn add *
inside a directory with items already added to the working copy will result in warnings/errors. It’s best to specify the files, or use the following technique:
Continue reading Secure-Shell (SSH) Reference Sheet – Subversion