Hi RubyForge--
I followed the faq and a few other web howto's. It looks like I'm doing everything right, but then I get:
Myles@MYLES-PC ~/dev/openbass (master)
$ git push origin master:refs/heads/master
Permission denied (publickey,gssapi-keyex,gssapi-with-mic).
fatal: The remote end hung up unexpectedly
I generated a key with:
ssh-keygen -t dsa -C "smprather@gmail.com"
I put the contents of ~/.ssh/id_dsa.pub in SSH Shared Authorized Keys.
~/.gitconfig contains:
[user]
email = smprather@gmail.com
name = Myles Prather
$PROJECT/.git/config:
$ cat config
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
hideDotFiles = dotGitOnly
[remote "origin"]
url = gitosis@rubyforge.org:openbass.git
fetch = +refs/heads/*:refs/remotes/origin/*
What to do next?
Thanks,
--Myles |