カテゴリー:
GitHub
閲覧数:414 配信日:2019-06-21 11:09
1.GitHub の GUI経由で リモートリポジトリを作成する
新しいリポジトリを作成
Create a New Repository
SSH keys
There are no SSH keys associated with your account.
Check out our guide to generating SSH keys or troubleshoot common SSH Problems.
Githubへ登録した公開鍵についてThere are no SSH keys associated with your account.
Check out our guide to generating SSH keys or troubleshoot common SSH Problems.
Git BASH
(起動した際の)デフォルトのホームディレクトリ
/c/Users/[ログインユーザ]になっている
エラー発生
・鍵認証設定が必要みたい
Permission denied (publickey). fatal: Could not read from remote repository.
・GitHubへ登録した公開鍵が勝手に削除される事はありますか?・接続先サーバ(Github)に公開鍵を登録していなかった
既存鍵を指定するもうまくいかない
/.ssh/config で別ドライブにあるファイル指定
WindowsでGitを始めたらまず確認!Git Bashの設定&ショートカット
GitHubへ接続するために公開鍵を作成する
Git BASAH にて ssh-keygen -t rsa を実行する
パスフレーズを入力すると、公開鍵と秘密鍵が作成される
デフォルトで(何も変更しなかった場合)は、コマンドを実行した直下に.sshディレクトリが作成され、下記の2ファイルが作成される
・id_rsa : 秘密鍵
・id_rsa.pub : 公開鍵
$ ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/c/Users/user/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /c/Users/user/.ssh/id_rsa.
Your public key has been saved in /c/Users/user/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:Mz/xxxx user@DESKTOP-xxxx
The key's randomart image is:
+---[RSA 3072]----+
| .oooo+oo Eoo |
| +.... o o . . |
|. + .o+ * o + |
| o ....* = . . |
| +.. . S . . |
| ..oo . + o + . |
| + + . = o o |
| . o o. . o |
| o. ... |
+----[SHA256]-----+
キーペア
デフォルトでは下記に作成される
C:/Users/Windowsユーザー名/.ssh/