git pushしてもリモートレポジトリに届かずEverything up-to-dateと返される
git pushしてもリモートレポジトリに届かずEverything up-to-dateと返されて
なかなかgithubに反映されなかったです
調べた結果コミットできてないと言う記事が多かったのですが
自分の場合コミットしてgit pushしてもEverything up-to-dateと出るだけでした
$ git commit -m"コメント"
$ git push
そこで
ssh://[email protected]/◯◯◯.gitに接続し、ローカルのmasterブランチをリモートのmasterブランチにpushするというやり方で
$ git push ssh://[email protected]/◯◯◯.git master:master
行いました。しかしながら
Everything up-to-date継続のままです。
そこで次の手段
$ git add -A
$ git commit -m "recommit" -v
$ git push
これでうまくリモートレポジトリに届きました。
Author And Source
この問題について(git pushしてもリモートレポジトリに届かずEverything up-to-dateと返される), 我々は、より多くの情報をここで見つけました https://qiita.com/MISIAN-MISIAN/items/47e9cfc2c7966db8d169著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .