症状
「git add -A」や「git commit」などを行い、「git merge」を実施したところ、下記のエラーが表示されました。git merge
fatal: No remote for the current branch.
翻訳すると、「fatal: 'origin/master' does not appear to be a git repository。致命的:現在のブランチのリモートはありません。」となりました。
リモートリポジトリがないため、表示されてしまったようです。
解決方法
リモートリポジトリを設定したら問題なくできました。#リモートリポジトリを設定
git remote add origin https://github.com/ユーザー名/リポジトリ名.git