.svn deploy
Hi,
I have my php files locally, and push it with sftp to my working-server. But also, i want to push my .svn directories too, so i removed the .svn filter from the filter list.
I want to sync them, because if my harddrive locally fails, i have a full backup on my workserver - with .svn directories
The Problem is now, that my .svn directories are uploaded.. but inside the tmp/ directory is missing, so my update/status on the workserver fails
Any idea how to tell my phpStorm to sync the tmp/ directory, too?
Best Regards
Christopher
请先登录再写评论。
Hello cristopher,
Why do you need .svn directories to be copied?
The fact is, inside .svn/tmp there is some runtime state of working copy - as far as I understand. So they will change unexpectedly.
More than that, inside .svn directories lock files are created during update/commit/revert
I.e. Subversion working copy was not designed to be copied somewhere - instead, you can checkout another working copy, or do an import from repository
i want to upload the svn directories to our workserver, too, because the workserver is backupped but my local pc not.
so if my hard drive fails, i have the full directory on my work server, and can checkin and checkout files from there
at the current state, every svn directory is locked, because the tmp files are missing
Best Regards
Christopher