$ git remote add origin(ラベル名) "リポジトリURL(git@github.com:〜)"
とするところを勢いで
$ git remote add origin master
にしてしまった
$ git push -u origin master
fatal: 'master' does not appear to be a git repository
fatal: Could not read from remote repository.
Please make sure you have the correct access rights
and the repository exists.
###上書きはできないっぽい
$ git remote add origin git@github.com:n0bisuke/music-tube.git
fatal: remote origin already exists.
git remote のラベルを消す
$ git remote remove origin(ラベル名)
とすることで,
$ git remote add git@github.com:〜
が実行できた.