i'm following this guide to setting up gitosis.
i run all this on the git server, including creating credentials for my user (in the git server) with the ssh-keygen -t dsa
step
now, from some other machine i just want to do
git remote add origin git@GitServer:existingGitRepo.git
git push origin master:refs/heads/master
but this keeps asking for git@GitServer password! What the hell, later on the guide it says to add public keys from other users in there, i presume that amounts to run ssh-keygen -t dsa
on the other machine and move the .pub file
what i'm concerned is that i will need to do this for each machine i will need to connect to this git repo??