PCにGitをセットアップ(Mac) - samidevjp/Tips GitHub Wiki

MacにはデフォルトでGitがインストールされているので確認

$ git version

ターミナルで以下入力

git config --global [user.name](http://user.name/) "First-name Family-name"
git config --global [user.email](http://user.email/) "[[email protected]](mailto:[email protected])"

次にGitで使用するエディタを登録(VSCord)

$ git config --global core.editor 'code --wait'

参考:https://phoeducation.work/entry/20210720/1626735480