Skip to content

Instantly share code, notes, and snippets.

View rajivjhoomuck's full-sized avatar
🎯
Vertiefungsgebiet-λ

Rajiv Jhoomuck rajivjhoomuck

🎯
Vertiefungsgebiet-λ
View GitHub Profile
@rajivjhoomuck
rajivjhoomuck / multiple-ssh-keys-git.adoc
Created April 15, 2024 18:50 — forked from alejandro-martin/multiple-ssh-keys-git.adoc
Configure multiple SSH Keys for Git

Use Multiple SSH Keys for Git host websites (Github, Gitlab)

This is guide about how to configure multiple SSH keys for some Git host websites such as Github, Gitlab, among others.

Creating SSH keys

  1. Create SSH directory:

@rajivjhoomuck
rajivjhoomuck / multiple_ssh_setting.md
Created September 23, 2021 17:10 — forked from jexchan/multiple_ssh_setting.md
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"
func canFail() -> Result<Int, Error> {
Bool.random()
? .success(7)
: .failure(NSError())
}
func neverFail() -> Result<Int, Never> { .success(9) }
func absurd<A>(_ never: Never) -> A {}