Here's my problem: I created three separate repos under one project. The repos are "branches" and "trunk" and "tags".
So I know I needed to delete them and have a single repository. I needed to move everything under trunk to the project. So I tried to do this remotely. First I checked out the project and then I deleted "branches" and "tags", both of which were empty.
I did a svn delete and then commit. Next I wanted to get rid of trunk, but it already held files. So what I did was I copied those files into the directory above it:
cp -r trunk/* .
Now I deleted the trunk:
svn delete trunk/
Okay, so now the project is empty after I did the commit. But I still have those important files that I copied out of the trunk. I want to put them under the project on the remote server, so I would have only one repository holding those files. But those local files still think they belong under the trunk repository, which was deleted. So I then issued this command, which I hoped would fix them:
svn switch --relocate \
svn+ssh://fkim@.../home/fkim/svn/aetv/trunk \
svn+ssh://fkim@.../home/fkim/svn/aetv
But this did not change anything with those files. When I do svn status, I see that they have the '?' next to them and if I try to add them, I am told that they are already under version control. What should I do? I need to get them all under the project on the remote server.
Please note that I am running everything on Linux. This is work I am doing at the command-line.