fatal: not a git repository (or any of the parent directories): .git
- new リポジトリは作ってある
⭐️やったこと
- User の登録
$ git config --global user.name "xxxx"
$ git config --global user.email "xxxxxx@gmail.com"
- git の初期化
$ git init
Initialized empty Git repository in 作業しているディレクトリ/.git/
- git branch で確認
git branch
* master
- 再度
git add .
- 無事に動きました!