GitHub/GitLab SSH key based authentication: Difference between revisions
m (Стадий: 4 [Фаза:Авторизиране, Статус:Разработен]; Категория:DevOps and SRE) |
m (Стадий: 5 [Фаза:Утвърждаване, Статус:Авторизиран]; Категория:DevOps and SRE) |
||
Line 73: | Line 73: | ||
{{devStage | {{devStage | ||
| Прндл = DevOps and SRE | | Прндл = DevOps and SRE | ||
| Стадий = | | Стадий = 5 | ||
| Фаза = | | Фаза = Утвърждаване | ||
| Статус = | | Статус = Авторизиран | ||
| ИдтПт = Spas | | ИдтПт = Spas | ||
| РзбПт = Spas | | РзбПт = Spas | ||
| АвтПт = | | АвтПт = Spas | ||
| УтвПт = | | УтвПт = {{REVISIONUSER}} | ||
| ИдтДт = 5.07.2022 | | ИдтДт = 5.07.2022 | ||
| РзбДт = 19.02.2023 | | РзбДт = 19.02.2023 | ||
| АвтДт = | | АвтДт = 19.02.2023 | ||
| УтвДт = | | УтвДт = {{Today}} | ||
| ИдтРв = [[Special:Permalink/27696|27696]] | | ИдтРв = [[Special:Permalink/27696|27696]] | ||
| РзбРв = [[Special:Permalink/32288|32288]] | | РзбРв = [[Special:Permalink/32288|32288]] | ||
| АвтРв = | | АвтРв = [[Special:Permalink/32298|32298]] | ||
| РзАРв = [[Special:Permalink/31170|31170]] | | РзАРв = [[Special:Permalink/31170|31170]] | ||
| УтвРв = {{REVISIONID}} | |||
| РзУРв = [[Special:Permalink/31172|31172]] | | РзУРв = [[Special:Permalink/31172|31172]] | ||
}} | }} | ||
</div> | </div> | ||
</noinclude> | </noinclude> |
Revision as of 15:28, 19 February 2023
This article is based on the answer of mine under the question How do I setup SSH key based authentication for GitHub? at Ask Ubuntu. Here is short manual how to setup SSH key based authentication for GitHub/GitLab and how to use it. Note the process for the both Git providers GitHub and GitLab is identical.
The example below is given for GitHub, if you want to do the same setup for GitLab just replace every occurrence of github
with gitlab
.
Setup SSH key based authentication for GitHub/GitLab
1. Install the openssh-client
if it is not already installed, and of course git
:
sudo apt update && sudo apt install -y openssh-client git
2. Create user's SSH directory and a sub directory where your dedicated GitHub SSH key will be stored:
mkdir -p -m 700 ~/.ssh/github
- The option
-m 700
is equivalent tochmod 700 ~/.ssh ~/.ssh/github
.
3. Generate the SSH key (the output key will have octal permissions 600
):
ssh-keygen -t ed25519 -C 'your@email.com' -f ~/.ssh/github/id_ed25519 -q -N ''
-q
– silence ssh-keygen;-N ''
– empty (without) passphrase, you can assign one if you want. If it is passphrase protected key, you can add-a 256
(default is 16) to increase the security of the passphrase by decreasing its verification.
4. Copy the content of the file id_ed25519.pub
, use the following command to output it:
cat ~/.ssh/github/id_ed25519.pub
5. Go to your GitHub account and follow these steps:
- From the drop-down menu in upper right corner select Settings.
- Then from the menu at the left side select SSH and GPG keys.
- Click on the New SSH Key button.
- Type some meaningful for a Title and paste the content of
~/.ssh/github/id_ed25519.pub
in the field Key. - Then click on the Add SSH Key button.
6. Create the ~/.ssh/config
file, if it doesn't already exist:
touch ~/.ssh/config
chmod 600 ~/.ssh/config
Edit the config
file and add the following entry for the new SSH key:
Host github.com
IdentityFile ~/.ssh/github/id_ed25519
7. Test the setup. Use the following command:
ssh -T git@github.com
On the question – Are you sure you want to continue connecting (yes/no)? – answer with yes. If everything went well you should receive a greeting message like this:
Hi pa4080! You've successfully authenticated, ...
How to use Git with SSH key
1. If you have already cloned repository through HTTPS, by using a command as these:
git clone https://github.com/username/repository-name.git
git clone git://github.com/username/repository-name
Go inside the repository's directory and execute the next command to allow work via SSH:
git remote set-url origin git@github.com:username/repository-name.git
2. Direct clone a repository via SSH:
git clone git@github.com:username/repository-name.git
3. In addition if you are using VSC it will work without problems with this setup. For already cloned repositories just use the Open Folder option and all VSC Git features will work.
References
- GitHub Developius' Gist: Setup SSH keys for use with GitHub/GitLab/BitBucket etc
- Information Security: SSH Key: Ed25519 vs RSA
- Information Security: Is it bad that my ed25519 key is so short compared to a RSA key?
- Risan Bagja: Upgrade Your SSH Key to Ed25519
- Cryptsus Blog: How to secure your SSH server with public key Ed25519 Elliptic Curve Cryptography