Class Capistrano::Deploy::Strategy::Checkout
In: lib/capistrano/recipes/deploy/strategy/checkout.rb
lib/capistrano/recipes/deploy/strategy/checkout.rb
Parent: Remote

Implements the deployment strategy which does an SCM checkout on each target host. This is the default deployment strategy for Capistrano.

Methods

command   command  

Protected Instance methods

Returns the SCM‘s checkout command for the revision to deploy.

[Source]

    # File lib/capistrano/recipes/deploy/strategy/checkout.rb, line 13
13:           def command
14:             @command ||= source.checkout(revision, configuration[:release_path])
15:           end

Returns the SCM‘s checkout command for the revision to deploy.

[Source]

    # File lib/capistrano/recipes/deploy/strategy/checkout.rb, line 13
13:           def command
14:             @command ||= source.checkout(revision, configuration[:release_path])
15:           end

[Validate]