git 重新提交所有文件

发布于 2024-10-13 05:38:32 字数 274 浏览 2 评论 0原文

我曾使用过两个分支,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

南渊 2024-10-20 05:38:32

我倾向于相信 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 into master, it seems likely that they both refer to the same commit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文