検索条件
全1件
(1/1ページ)
Hi @kjimba,見た瞬間、新手のフィッシングメールかなにかかと思った……。
We noticed your personal access token "(トークン名)" with notifications and repo scopes will expire in 6 days.
If this token is still needed, visit https://github.com/settings/tokens/669610437/regenerate to generate an equivalent.
If you run into problems, please contact support by visiting https://github.com/contact?tags=dotcom-accounts
Thanks,
The GitHub Team
$ ssh-keygen -t ed25519 -C "name@example.com" Generating public/private ed25519 key pair. Enter file in which to save the key (/home/jimba/.ssh/id_ed25519):
Enter passphrase (empty for no passphrase): *** Enter same passphrase again: ***
jimba ~/.ssh/keys/git $ ll 合計 20 -rw------- 1 jimba pi 419 11月 3 12:21 id_ed25519 -rw-r--r-- 1 jimba pi 104 11月 3 12:21 id_ed25519.pub -rw------- 1 jimba pi 3434 5月 21 23:39 id_rsa -rw-r--r-- 1 jimba pi 748 5月 21 23:39 id_rsa.pub drwxr-xr-x 2 jimba pi 4096 11月 3 12:13 old
$ cat id_ed25519.pub
$ eval "$(ssh-agent -s)" $ ssh-add ~/.ssh/keys/git/id_ed25519
$ ssh-add -l 256 SHA256:******************** name@example.com (ED25519)
$ cd ~/.ssh $ [ -d old ] || mkdir old $ cp -p config old/config_$(date +%Y%m%d) $ diff config old/config_$(date +%Y%m%d) $ vi config (既存の鍵を ~/.ssh/keys/git/id_ed25519 に変更) $ diff config old/config_$(date +%Y%m%d) 5c5 < IdentityFile ~/.ssh/keys/git/id_ed25519 --- > IdentityFile ~/.ssh/keys/git/id_rsa
$ cat config ServerAliveInterval 60 Host github github.com HostName github.com IdentityFile ~/.ssh/keys/git/id_ed25519 User git
$ ssh -T git@github.com問題ないようです。
Hi kjimba! You've successfully authenticated, but GitHub does not provide shell access.