git 重新提交所有文件
我曾使用过两个分支,master 和 v.2.0。我确实对 v.2.0 进行了更改,现在我尝试将其推送到 Heroku,但没有任何变化。
我已经提交了所有文件,现在我无法将其推送到 Heroku,因为它说一切都是最新的。
我尝试过此命令:
git push heroku v.2.0:master
我收到此消息
Everything up-to-date
该怎么办?
I have worked with two branches, master and v.2.0. I did allot of changes to v.2.0 and now I tried to push it to Heroku but nothing changed.
I have commited all files and now I cant push it to Heroku, because it says everything is up to date.
I have tried this command:
git push heroku v.2.0:master
I get this message
Everything up-to-date
What to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我倾向于相信 Git,一切都是最新的。
git log master..v.2.0
返回任何提交吗?如果您将
v.2.0
合并到master
中,则它们似乎都引用相同的提交。I tend to trust Git that everything is up-to-date. Are any commits returned by
git log master..v.2.0
?If you merged
v.2.0
intomaster
, it seems likely that they both refer to the same commit.