I got this to work. I was having some problems with keys with multiple accounts at GitHub that I did not understand, so I tried Unfuddle
in my deploy.rb file I did this: set :repository, "git@(acct).unfuddle.com:(acct)/(repo_name).git" set :scm, :git on my server (Slicehost) I did this from /home/deploy/.ssh: ssh-keygen I then copied the public key over to unfuddle into my personal settings .. When I do a cap deploy it looks like it does a git clone .. and it WORKED! Thanks for the tips it's helped my understand git, cap and ssh interaction better. Todd On 12 Jun, 01:32, Neil Wilson <[EMAIL PROTECTED]> wrote: > On 11 Jun, 13:51, "Scott Chacon" <[EMAIL PROTECTED]> wrote: > > > I would recommend against this unless you're using it in conjunction with > > > set :git_shallow_clone, 1 > > > Otherwise it will do a full clone every time you deploy which will get > > slower and slower as time goes by. Setting up ssh authentication > > should not be hugely difficult - I would recommend logging into your > > deploy server as the user set in : > > Ok. Add in > > set :copy_cache, true > > You shouldn't need extra ssh authentication if you forward the ssh > request. > > NeilW --~--~---------~--~----~------------~-------~--~----~ To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/capistrano -~----------~----~----~----~------~----~------~--~---
