Abort: unsynchronized remote changes?

I got a warning like this

abort: unsynced remote changes! 

How can I 1) See what is the difference? hg diff? hg status? 2) Code negotiation?

Thanks in advance. This is what I got while working hg, checking the heads.

 $ hg heads ändring: 192:e571b17295e9rke: 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$ 
+3
source share
2 answers

You must pull the latest changes before clicking:

 hg pull 

To view the differences before clicking:

 hg in 

After pulling, you need to combine the changes that you pulled with the changes that you are trying to click:

 hg merge 

After the merge, you will need to perform the merge:

 hg commit 

Finally, click without errors:

 hg push 
+4
source

Just follow

 hg incoming 

You will see a list of changes available on the remote side.

+3
source

All Articles