I have a remote git repository setup for centralized development within my team. However, the production server that we deploy our applications currently does not have git running on it. We want to use capistrano to deploy our applications how can we set up our deploy recipes to 'pull' from the remote git repositories when deploying?
In other words can I do something like this?
set :repository, "myserver.com/git/#{application}.git"
set :scm, "git"
set :deploy_via, :copy