中止:未同步的远程更改?
我收到这样的警告
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您必须在推送之前拉取最新的更改:
要在拉取之前查看差异:
拉取之后,您必须将拉取的更改与您尝试推送的更改合并:
合并后,您必须提交合并:
最后推送没有错误:
You have to pull latest changes before pushing:
To view differences before pull:
After pull you have to merge changes you've pulled with the changes you're trying to push:
After merge you'll have to commit your merge:
And finally push without errors:
只需执行 a
您将看到远程端可用的更改列表
Just do a
You will see the list of changes that are available in the remote side