I am new to subversion, I have imported an web project that we have been working on. We are able to access everything via the repository. We can checkout files, update them, commit them, and all of the changes can be seen by other users.
My question is, shouldn't it write back to the original project folder I imported? I can not see the changes made there, only in the repository?
Let's say you will get your sources from import_repo and work/commit changes with work_repo.
Importfrom your import_repo, or ignore this step if import_repo is work_repo. You are getting the files contained in the repoCheckoutwith work_repo. You are creating a link between your local folder and the repoUpdateyour working copy (your folder on your hard drive), it is a synchronization from the repo to your local sourcesAddthe files you newly created ordeletethe ones you want to get rid of. It won't add or delete right now, but they will be tagged for the next commitCommit, it is the synchronization from your local sources to your repoCheck the presence of
.svnfiles. They are your "synchronization" with the repo's sources.If you imported your project, you have broken the link with the repository (like a simple copy/paste of the sources).
If you want to keep the synchronization, try to
checkoutinstead.