We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I have a fairly large git project wanna to deploy using mina.
For capistrano there's a handly config allows you to use git pull instead of git clone
git pull
git clone
set :deploy_via, :remote_cache set :copy_exclude, [ '.git' ]
So deploy is much faster. Can we make it happen also on mina? Thanks!
The text was updated successfully, but these errors were encountered:
We don't clone the project every time you deploy, just the first tmie, mina already uses git fetch. (same as pull, but without merge).
Sorry, something went wrong.
@gabskoro You are correct. Mina looks really cool!
$/.rvm/gems/ruby-2.1.2/gems/mina-0.3.1/lib/mina/git.rb: #{echo_cmd %[(cd "#{deploy_to}/scm" && git fetch "#{repository!}" "#{branch}:#{branch}" --force)]}
No branches or pull requests
Hi,
I have a fairly large git project wanna to deploy using mina.
For capistrano there's a handly config allows you to use
git pull
instead ofgit clone
So deploy is much faster. Can we make it happen also on mina? Thanks!
The text was updated successfully, but these errors were encountered: