I have several SSH keys:
~/.ssh/
id_rsa
id_rsa.pub
fizz
fizz.pub
buzz
buzz.pub
I cloned a GitHub project using HTTPS (e.g. git clone https://github.com/someorg/somerepo.git). I made some changes and now I'm trying to push them, however I'm getting the famous error:
"Permission to someorg/somerepo.git denied to blah-user"
Where blah-user is (I believe) the user associated with my id_rsa SSH key. So I think git is defaulting to use my id_rsa key, whereas I would like to specifically user the buzz key for making the push (I've associated that buzz key with my GitHub account).
Any ideas as to what I could do here, or what I can do to specifically use the buzz key as part of my push?