ekho / capistrano-git-submodule-strategy

Git submodule support for Capistrano 3
MIT License
47 stars 20 forks source link

It's not ignoring the folders defined in the .gitattributes #9

Closed thiagolcks closed 8 years ago

thiagolcks commented 9 years ago

I'm trying to not deploy the folders defined in my .gitattributes but it's not working. Have a look in my file: /tests export-ignore /bin export-ignore

Is there another way to ignore some folders?

ekho commented 9 years ago

Hi, @thiagolcks

export-ignore does not affects because git submodule strategy does not use git archive command.

Now you can use workaround: write custom capistrano task after deploy:updating which removes some files/directories from release

thiagolcks commented 9 years ago

Thanks!