Issue
Hi i did't used any version control system until now so basically i am newbie in using it.
Presently the os i am using is Fedora and svn for version controlling, suppose i had given below link to access files
http://example-theory.com/svn-repos/files/
When i clicked on it, i had given username and password and able to access all the files in it. for example the format is as below
svn-repos - Revision 4: /files
..
Examplefolder_1/
Newfolder_2/
But i want to create a separate folder with name latest_files
and need to copy some pdf files
and .py
in to it.
How can i create a folder in svn repository
How to copy the pdf and other files in to it.
Thanks in advance.
Edited Code:
- Installed subversion
- Tried to creater a repository with this command
svnadmin create svn
Created a folde svn Tried to make a directory inside the folder
svn
with namefolder_example
with the following commandsvn mkdir folder_example
I recieved the following error
svn mkdir folder_example
svn: '.' is not a working copy
My intension is to create a folder and import all the files from the link http://example-theory.com/svn-repos/files/
and update and commit with changes in that.
Solution
You need a Subversion client. See http://svnbook.red-bean.com
Answered By - Matteo