Web development workflow with svn - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T02:23:45Z http://stackoverflow.com/feeds/question/364951 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/364951/web-development-workflow-with-svn 3 Web development workflow with svn WJ B 2008-12-13T07:18:43Z 2008-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#364965 1 Answer by CMS for Web development workflow with svn CMS 2008-12-13T07:39:55Z 2008-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#364968 2 Answer by AlfeG for Web development workflow with svn AlfeG 2008-12-13T07:44:11Z 2008-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>