Repository: https://…:4442/git/repo.gitdeploy.rb:--require "bundler/capistrano"
set :application, "AppName"set :scm_username, "username"set :scm_password, "password"set :scm, :gitset :branch, "master"set :repository, " https://…:4442/git/repo.git"set :deploy_via, "copy"set :copy_cache, falseset :copy_exclude, [".git*", ".DS_Store", "nbproject"]ssh_options[:forward_agent] = trueset :use_sudo, falseset :keep_releases, 5task :production doset :user, "root"set :password, "password"set :deploy_to, "/var/www/passenger.site"role :web, "domain.com"role :app, "domain.com"role :db, "domain.com", :primary => truessh_options[:port] = 1756set :env, "production"endnamespace :deploy dotask :restart, :roles => :app, :except => { :no_release => true } dorun "cd #{current_path}; bundle exec rake assets:precompile"run "touch #{File.join(current_path,'tmp','restart.txt')}"endendruby 1.8.7 (2012-10-12 patchlevel 371) [i686-darwin11]Capistrano v2.12.0rails 3.2.11
--
* You received this message because you are subscribed to the Google Groups "Capistrano" group.
* To post to this group, send email to capis...@googlegroups.com
* To unsubscribe from this group, send email to capistrano+...@googlegroups.com For more options, visit this group at http://groups.google.com/group/capistrano?hl=en
---
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 capistrano+...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
You should use the method user:pass...@your-host.de:4222 - Git doesn't like giving http credentials.