🐵
サクッとGitHub(Win)
はじめに
こういう人向け
- Windows10 ユーザ
- UnityとC# 周辺のことしかやってこなかった
- GitHubを使えるようにしておきたい
- Gitクライアント Fork を使う
- SSH 接続する
Git Bush
インストールする
SSH Key
鍵の作成
ssh-keygen -t rsa -f github_rsa
C:Users/[user name]/.ssh/
配下に自動的に作られる
Config
C:Users/[user name]/.ssh/config
を編集
config
Host github.com
HostName github.com
IdentityFile ~/.ssh/github_rsa
User [github account]
Forkの設定
ツールバーから
- File > Acounts でGitHアカウントを登録
- File > Configure SSH Keys を開くとConfigに登録したKeyが一覧に並んでいるので目的のKeyにチェックを入れる
GitHubの設定
- GitHub のアカウントの Settings > SSH and GPG keys > New SSH Key を開く
- github_rsa.pub の中身を丸ごと貼り付けて Add SSH key 押下
しばらく作業していると。。。
名前とメアドを登録しろといわれた
*** Please tell me who you are.
Run
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
to set your account's default identity.
Omit --global to set the identity only in this repository.
fatal: unable to auto-detect email address (got '○@○Air2.(none)')
文中にあるように登録すると問題は起きなくなった
git config --global user.email [you@example.com]
git config --global user.name [Your Name]
Discussion