■ はじめに
完全に自分用のメモ。 今回は、PC が新しくなった際のGit/Githubの設定を書いておく。 (こうして行いと設定漏れがでて後々面倒くさくなるので)
目次
【1】git config 【2】Github認証省略する設定
【1】git config
# user.name / user.email git config --global user.name <your_user_name> git config --global user.email <your_email_address> # Auto CrLf for Windows git config --global core.autocrlf false git config core.autocrlf # Confirm false
各設定の詳細
* 以下の関連記事を参照のこと
Git ~ git config あれこれ ~
https://dk521123.hatenablog.com/entry/2021/01/10/000000
Git ~ 改行コード自動変換 core.autocrlf ~
https://dk521123.hatenablog.com/entry/2021/08/17/171756
【2】Github認証省略する設定
* 以下の関連記事の「認証省略する設定(任意設定)」を参照のこと
Github ~ アクセストークン ~
https://dk521123.hatenablog.com/entry/2022/01/19/113903
関連記事
Git ~ 入門編 ~
https://dk521123.hatenablog.com/entry/2018/06/29/104028
Git ~ git config あれこれ ~
https://dk521123.hatenablog.com/entry/2021/01/10/000000
Git ~ 改行コード自動変換 core.autocrlf ~
https://dk521123.hatenablog.com/entry/2021/08/17/171756
Github ~ 入門編 ~
https://dk521123.hatenablog.com/entry/2019/07/18/234652
Github ~ アクセストークン ~
https://dk521123.hatenablog.com/entry/2022/01/19/113903