SVN Import
Now we have to import files in the repository. Import command is used to import our files and folders in the repository.Syntax:
$ svn import path_file path_repExample:
We have a directory named workdir which we have to import in our repository. The command for this is:
$ svn import workdir/ file:///home/user/svnrep -m 'Folder Imported' Adding workdir/test Committed revision 1. $The folder workdir has been imported in the repository, svnrep. It also contains a file named test.
