pythonでLINEbotを作ろうとしています。
https://miyabi-lab.space/blog/21を参考にして
// gitの初期ファイルを作成
git init
// ローカルリポジトリに結びつくリモートリポジトリを設定
heroku git:remote -a (アプリ名)
// 変更したファイルをインデックスに登録
git add .
// 変更したファイルをリポジトリに書き込む("inital commit"はコメントなのでなんでも良い)
git commit -m "inital commi
// herokuにローカルで作成したファイルをpush
git push heroku master
この作業をTerminalで試しましたが以下のようになってうまくいきませんでした。
git pull heloku master
も試してみましたがうまくいきませんでした。
以下がターミナルの入力内容です。※アプリ名は実際にgitで作ったものを入力してあります。
MecBook-Pro:line-bot-test (ユーザー名)$ git init
Reinitialized existing Git repository in /Users/(ユーザー名)/line-bot-test/.git/
MecBook-Pro:line-bot-test (ユーザー名)$ heroku git:remote -a (アプリ名)
set git remote heroku to https://git.heroku.com/(アプリ名).git
MecBook-Pro:line-bot-test (ユーザー名)$ git add .
MecBook-Pro:line-bot-test (ユーザー名)$ git commit -m "inital commit"
On branch master
Initial commit
nothing to commit
MecBook-Pro:line-bot-test (ユーザー名)$ git push heroku master
error: src refspec master does not match any
error: failed to push some refs to 'https://git.heroku.com/(ユーザー名).git'
MecBook-Pro:line-bot-test (ユーザー名)$
なにぶん初心者なので『何言ってんだこいつ感』はあるでしょうが何卒よろしくお願いいたします。
追記;二点気になるところがありまして
MecBook-Pro:line-bot-test nishigakitoshihito$ git commit -m "inital commit"
On branch master
Initial commit
nothing to commit
のnothing to commitと出る点と git add .と入力しても何も出ない点が気になります。
ここに解決策がありそうな気がするのですが、この点に関して調べても何も出てきません。
もしこの辺りで何かご存じ中かたあれば教えていただけませんでしょうか?
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。