Generate a new SSH Key then Add the key to your second GitHub account
In ~/.ssh/config
, add a custom host for your additional user
Host github.com-otheruser
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_otheruser
Generate a new SSH Key then Add the key to your second GitHub account
In ~/.ssh/config
, add a custom host for your additional user
Host github.com-otheruser
HostName github.com
User git
IdentityFile ~/.ssh/id_rsa_otheruser
# typed: true | |
class Foo | |
include Mongoid::Document | |
include Mongoid::Timestamps | |
field :bar, type: String | |
end |