中止:未同步的远程更改?

发布于 2024-10-20 14:22:06 字数 827 浏览 2 评论 0原文

我收到这样的警告

abort: unsynced remote changes!

我该怎么办 1)看看有什么区别?汞差异?汞状态? 2)协调代码?

提前致谢。这是我运行 hg 检查头部的结果

$ hg heads
ändring:     192:e571b17295e9
märke:       tip
förälder:    175:f50d4c4461e5
användare:   tekniklas
datum:       Sat Jan 08 04:45:07 2011 +0000
kortfattat:  twitter support added

ändring:     191:9e419ce3e7e1
användare:   tekniklas
datum:       Wed Mar 09 12:56:27 2011 +0000
kortfattat:  adsense maps

ändring:     159:f8d974793b12
förälder:    157:ef1d955b9236
användare:   tekniklas
datum:       Sat Dec 18 17:05:45 2010 +0000
kortfattat:  remove

ändring:     89:008a2ac46b4f
användare:   tekniklas
datum:       Sun Aug 01 07:10:40 2010 +0000
kortfattat:  classifiedsmarket/market/market_ad_preview.html

ubuntu@ubuntu:/media/Lexar/montao$ 

I got a warning like this

abort: unsynced remote changes!

How do I
1) See what's the difference? hg diff? hg status?
2) Harmonize the code?

Thanks in advance. Here's what I got running hg inspecting the heads

$ hg heads
ändring:     192:e571b17295e9
märke:       tip
förälder:    175:f50d4c4461e5
användare:   tekniklas
datum:       Sat Jan 08 04:45:07 2011 +0000
kortfattat:  twitter support added

ändring:     191:9e419ce3e7e1
användare:   tekniklas
datum:       Wed Mar 09 12:56:27 2011 +0000
kortfattat:  adsense maps

ändring:     159:f8d974793b12
förälder:    157:ef1d955b9236
användare:   tekniklas
datum:       Sat Dec 18 17:05:45 2010 +0000
kortfattat:  remove

ändring:     89:008a2ac46b4f
användare:   tekniklas
datum:       Sun Aug 01 07:10:40 2010 +0000
kortfattat:  classifiedsmarket/market/market_ad_preview.html

ubuntu@ubuntu:/media/Lexar/montao$ 

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

荒芜了季节 2024-10-27 14:22:06

您必须在推送之前拉取最新的更改:

hg pull

要在拉取之前查看差异:

hg in

拉取之后,您必须将拉取的更改与您尝试推送的更改合并:

hg merge

合并后,您必须提交合并:

hg commit

最后推送没有错误:

hg push

You have to pull latest changes before pushing:

hg pull

To view differences before pull:

hg in

After pull you have to merge changes you've pulled with the changes you're trying to push:

hg merge

After merge you'll have to commit your merge:

hg commit

And finally push without errors:

hg push
别念他 2024-10-27 14:22:06

只需执行 a

hg incoming

您将看到远程端可用的更改列表

Just do a

hg incoming

You will see the list of changes that are available in the remote side

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