Creates a tar archive locally from the git repository and uploads it to the remote server.
Add the library to your Gemfile
:
group :development do
gem 'capistrano-git-copy', require: false
end
And require it in your Capfile
:
require 'capistrano/git/copy'
Now use git_copy
as your SCM type in your config/deploy.rb
:
set :scm, :git_copy
You can modify any of the following Capistrano variables in your deploy.rb
config.
git_archive_all_bin
- Set the path for the git-archive-all command. Defaults to git-archive-all found in $PATH or the included version as a fallback.git_copy_tmp_path
- Temporary path where the repository is cloned to and the archive is created.
- Uses git-archive-all for bundling repositories.
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request