Windows での Git セットアップ
参考資料
Git のインストールと設定 - Azure DevOps | Microsoft Learn
Download for Windows (Git 公式サイト)
Windows 10 で Git 環境を整える (ひだまりソケットは壊れない)
メモ
Git for Windows をインストールする
Windows 11 では winget が標準で使えるので、winget を使うのが楽そう
winget install --id Git.Git -e --source winget
設定する
git config set --global user.name "Your Name"
git config set --global user.email "your-email@example.com"
git config set --global core.autocrlf false
勝手に改行コードの変更がされないように (最新のバージョンでも必要かどうかはよくわかっていない)