Web development workflow with svn - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T02:23:45Zhttp://stackoverflow.com/feeds/question/364951http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/364951/web-development-workflow-with-svn3Web development workflow with svnWJ B2008-12-13T07:18:43Z2008-12-13T07:44:11Z
<p>I set up my svn in assembla, and I code and test on my local machine that is set up identical to the production server. THen, I commit changes to assembla svn and also ftp upload to my production server.</p>
<p>How can I improve my workflow? I would like to keep my svn on assembla because I can often move to another production server.</p>
<p>Thank you very much!</p>
http://stackoverflow.com/questions/364951/web-development-workflow-with-svn/364965#3649651Answer by CMS for Web development workflow with svnCMS2008-12-13T07:39:55Z2008-12-13T07:39:55Z<p>If you're working with interpreted languages like PHP, Python or Ruby for example, you can do a clean <a href="http://svnbook.red-bean.com/en/1.0/re10.html" rel="nofollow">svn export</a> directly from your repository to the production server, instead of uploading by ftp the source files from your machine. </p>
<p>You'll need shell access to your production server. </p>
http://stackoverflow.com/questions/364951/web-development-workflow-with-svn/364968#3649682Answer by AlfeG for Web development workflow with svnAlfeG2008-12-13T07:44:11Z2008-12-13T07:44:11Z<p>Better way is to build nant or MSBuild script that will do all dirty work automated. Those scripts also can ftp upload.</p>
<p>I've using on production server script to checkout last changes from svn, build and sync with production folder.</p>