> > Later I added a folder in to repo. I just want to deploy this folder or > specific files inside this folder(should be from command lines as like as > older version task deploy:upload ) without redeploying full app again > without cache.
No, Capistrano 3 always uses a cache. It also doesn't support SVN. If you need something to simply upload changed files (which kindof defeats the purpose of tying a single deploy to a specific commit and logging what you deploy) write your own task using the Capfile, and SSHKit (the backend driver Gem we use) upload! method, it's documented here https://github.com/capistrano/sshkit/blob/master/EXAMPLES.md#upload-a-directory-of-files Lee Hambley -- http://lee.hambley.name/ +49 (0) 170 298 5667 On 4 February 2014 13:28, abhijit vaidya <[email protected]> wrote: > Hi, > > I am new to Capistrano. I am looking help on deploying only specific files > or directoris inside git/svn repo. > > Example scenario, > > I have app called test-app > I have done a full deployment of app using default deploy.rb setting on > one remote server > Later I added a folder in to repo. I just want to deploy this folder or > specific files inside this folder(should be from command lines as like as > older version task deploy:upload ) without redeploying full app again > without cache. > > is it possible? > > Thanks > Abhijit > > -- > You received this message because you are subscribed to the Google Groups > "Capistrano" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To view this discussion on the web, visit > https://groups.google.com/d/msgid/capistrano/ca3b24a1-7112-4888-b7bf-7839193e2281%40googlegroups.com > . > For more options, visit https://groups.google.com/groups/opt_out. > -- You received this message because you are subscribed to the Google Groups "Capistrano" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web, visit https://groups.google.com/d/msgid/capistrano/CAN_%2BVLV2Hn7LGp05Gd8U00GFR4BEiZeXq2bzdupRmAALU-1_sQ%40mail.gmail.com. For more options, visit https://groups.google.com/groups/opt_out.
