git push ができません・・・
git push origin ブランチ名
とコマンドすると、
fatal: 'コマンド名' 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.
という風に表示されます。
sshkeyを作ってgithubに登録し直してみたのですが、ダメでした。
git branch
で確認すると
- ブランチ名
と表示されるので、git checkout -bはできていると思います。
ターミナル を立ち上げてからは、以下の順でコマンドをしました。
cd ~/git/リポジトリ名
docker-compose up --build -d
docker-compose exec php bash
php 1_01.php(予め作っておいたPHPファイル)
git checkout -b ブランチ名
git add 1_01.php
git commit -m "コメント"
git push origin ブランチ名
git log で確認したところ、commitの結果が、(HEAD -> ブランチ名)と表示され、コメントも表示されていました。
なので、git push origin ブランチ名
のコマンドだけできていないようです。
解決方法がわかる方がいらっしゃいましたら、アドバイスお願いいたします。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
退会済みユーザー
2020/06/02 08:43