sudo apt-get install Subversion subversion-tools installation client
1, first need to install SVN. The SVN installation under Ubuntu is very simple, sudo apt-get install subversion, and then follow the prompts step-by-step to complete the installation of SVN;
2, check out the file (checkout).
Use command: SVN co http://{svn repository URL}/destination
Then the system will log in with the current user name, prompt for a password, if the first password input error, you will be prompted to enter the user name;
Once you've entered it correctly, you can check out the file.
3. Submission of documents (commit).
Enter the directory you want to update, and type the command:
SVN commit-m path-to-commit, where path-to-commit can be empty, will prompt for the updated version number after success.
4. Update file (updated).
SVN update, run this command on the directory you want to update.
5. Check the log.
SVN log path