This question comes to you from someone who's been burned by SVN before and am henceforward afraid of it. So I have a little problem because I was stupid when I was working on my SVN repo. I was developing a project, let's say containing one file, that I just released as a first minor version. So my svn repo looked like this:
project/
--> main.py (v1)
Notice, that I did not create the usual trunk
, branch
, and tags
folders as I should've. Now, I need to, but the problem is that I have since edited the file! Is there a way I can go from this:
Hard drive:
project/
--> main.py (v2)
SVN repo:
project/
--> main.py (v1)
to this:
Hard drive and SVN repo:
project/
--> trunk/
--> main.py (v2)
--> tags/
--> v1/
--> main.py (v1)
--> branch/
Thanks for any/all help!
PS Please note that "Switch to git!" is not an acceptable answer :)