Matt Brictson
Matt Brictson
Capistrano 3.4 takes any extra `before`/`after` arguments and passes them to `Rake::Task.define_task` as task arguments. Anyone that depends on this 3.4 behavior will break if we interpret the extra arguments...
> Is there a proper way to load your Rails application into the deploy.rb for access to things in the app. Short answer: no. I haven't been a maintainer of...
I am pretty sure Airbrussh uses `flush`, so this might be "fixed" when we make Airbrussh the default formatter (#1509).
Capistrano uses a concept called [SSH agent forwarding](https://yakking.branchable.com/posts/ssh-A/). This means that the git commands are authenticated using the SSH key from your *local* machine, not the SSH key that you...
Thanks for the detailed report! Capistrano should automatically update the remote git URL if it changes. This feature was added in https://github.com/capistrano/capistrano/pull/1826 . Do you have any idea why `git...
I just tested this and it seems that capistrano is doing the right thing. I did a `cap production deploy`, then updated `deploy.rb` and changed the `:git_url`, then did another...
Full disclosure here: I am officially stumped on this one. Sorry I can't be of help! I am particularly confused as to why deleting scripts in `/tmp` would have any...
> For me, it doesn't seem to have anything to do with the remote. On my Mac machine, I can deploy without problems. But on my Linux (Ubuntu) machine, I...
Hi, thanks for the detailed report! Can you try this version and see if it makes any difference? ```ruby set :default_env, { _CAPISTRANO: true } desc "Load remote environment" task...
@zhouguangming did you try [the solution I mentioned above](https://github.com/capistrano/capistrano/issues/1962#issuecomment-356636054)?