I am new to Ruby and git so please stop me if it seems I am headed in the wrong direction :)
What I was trying to do was install RVM so I can more freely manage my gems. I was doing that according to this tutorial: https://rvm.io
It says there that "To install and/or update the latest code from the github repository ( requires git"
So I started to install git (oh what fun...) and was following this tutorial: https://help.ubuntu.com/community/Git
and there the instructions say that I need to do this:
sudo -H -u gitosis gitosis-init < initialKeyFileName
where initialKeyFileName name is the name of a copy of the public key from your local machine which is on the server (i.e. the file ending in .pub)
So my questions is how do I find this .pub file? Is it on my local computer somewhere or do I need to contact the sys admin? Or is it the ,pub from a repository where I need to download from, which would be a Ruby repo since I was trying to install rails originally.
Seems a bit convoluted, doesn't it? :) Is there a better way to do all this?