原因
git remote add
やgit branch
、git commit
実行時に以下のようなエラーが出る場合があります。
ターミナル
$ git remote add origin .....
fatal: not a git repository (or any of the parent directories): .git
これは初期設定が不十分な場合に発生します。
解消法
ユーザーに関する設定ができていない場合には以下のコマンドを実行して設定します。
ターミナル
$ git config --global user.name "UserName"
$ git config --global user.email "sample@email.com"
設定できているか以下のコマンドで確認します。
ターミナル
$ cat ~/.gitconfig
[user]
email = sample@email.com
name = UserName
次にgitの初期化をします。
ターミナル
$ git init
Initialized empty Git repository in sample-app/.git/
これで正常にコマンドが実行できるようになります。