capistrano-withrsync
capistrano-withrsync copied to clipboard
Capistrano with rsync to deployment hosts from local repository.
Allow faster deployments for large projects Using shallow clones with the depth of one to get the src repo we only checkout the commit we need (even on submodules). This...
The current workflow is basically as follows: * clone repository * checkout branch Having a big repo with some binaries and a lot of commits the first step takes a...
Thanks for great plugin! I want to deploy subtree in repository via rsync. So I try to use variable :repo_tree. Would you merge that?
in capistrano v3.7.0 https://github.com/capistrano/capistrano/blob/9543213eeca3457b7cf7a0884a3fc92091bf34f4/CHANGELOG.md#potentially-breaking-changes
I have already cloned my repo and ran composer install, is their a way to by pass the clone stage? Then just sync the my local folder to the destination?
My `deploy.rb` has: ``` set :scm, :svn set :repo_url, 'https://svn.acme.com/app/trunk' ``` withrsync appears to ignore the SCM setting, resulting in it treating the repo URL as a git repository, which...