Version control only manages those files or folders that have been added with the add command. If you create a new file in your local copy, it will be ignored by Subversion until this command is executed as shown in the following example.
svn --username [YOUR_ID] add [FILE]
You must replace “[FILE]” by the name of the files or folders to be added. This operation only adds the file to the version control locally. This change is not sent to the remote repository until the commit command is executed.