Jonathan Share wrote:
> On 6/25/08, rko618 <[EMAIL PROTECTED]> wrote:
>>  I'm not sure what SCM you are using but I know with Git you can use
>>  this option in deploy.rb to specify the branch
>>
>>  set :branch, "master"
>>
> 
> Are there any pre-baked solutions for this in other SCM's (subversion,
> for example)?

Just have a seperate branch that you deploy:

# in prod
set :repository, "https://www.example.com/svn/branches/stable";

# in staging
set :repository, "https://www.example.com/svn/branches/stable";

# in testing
set :repository, "https://www.example.com/svn/trunk";


Jonathan

-- 
Jonathan Weiss
http://blog.innerewut.de
http://twitter.com/jweiss

--~--~---------~--~----~------------~-------~--~----~
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/capistrano
-~----------~----~----~----~------~----~------~--~---

Reply via email to