LoginSignup
0
0

More than 3 years have passed since last update.

GitHubにSSH接続でログインするまで

Last updated at Posted at 2020-02-11

ユーザー情報の設定

git config --global user.name "[USER NAME]"
git config --global user.email "[MAIL ADDRESS]"

SSH接続

下準備

mkdir ~/.ssh
cd ~/.ssh

公開鍵を生成

ssh-keygen -t rsa

何も入力せずに3回エンターを押す

公開鍵をコピー

sudo apt install xsel
cat ~/.ssh/id_rsa.pub | xsel --clipboard --input

公開鍵のアップ

公開鍵をhttps://github.com/settings/sshにアップする

接続の確認

ssh -T git@github.com

これでyesとしたら完了

参考サイト:https://qiita.com/shizuma/items/2b2f873a0034839e47ce

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0