こんにちは!安田駿介です!
今回は「fatal: Not a git repository (or any of the parent directories): .gitの解決法」というテーマで解説していきます。
#エラー内容
Gitの初期設定が不備ということです。
#解決策
下記のコードを順番に実行してください。
1.ユーザの登録
$ git config --global user.name "xxxx"
$ git config --global user.email "xxxxxx@gmail.com"
2.gitの初期化
git init
3.git branchで確認
$ git branch
* master