In Capistrano 2 it was possible to exclude certain files that live in the Git repository with copy_exclude:
set :copy_exclude, %w{.git .DS_Store web concept config lib}
This isn't possible anymore in Capistrano 3. How can I exclude certain files that I want in my Git repository but not necessarily on my server?