tags:

views:

15

answers:

0

I am using git submodule feature with capistrano. I have

set :deploy_via, :remote_cache
set :git_enable_submodules,1

Everything works great. However remote_cache option is only applied to main app. Which means that every single time I deploy the app all submodules pull in all changes and that takes a lot of time.

Is there a way to tell submodule to use :remote_cache.

Thanks