So I have a project on a remote file system (that I have been editing via ssh). Now I need to copy the project onto my hard drive. I don't really need version control on the project anymore, so this makes me think that I should svn export
the project. But there are files that haven't been checked in yet, that I need to preserve when I make the copy.
What would be the best way to copy this project onto my local drive?
Update: I'm not sure how to do it, but I would like to just copy all the files (using some sort of ssh secure copy command) then worry about the svn stuff later.
Update: This is what I ended up doing to copy the project to my local drive:
scp -r username@remotehost:/path/to/dir ./localdir