outstanding uncommitted changes hg Mercurial Error

outstanding uncommitted changes hg Mercurial Error

If you try to push the changes you have to the repository, you might come across outstanding uncommitted changes error in mercurial

It would happen when you have some changes pending in your local repository and you want to pull and rebase from the repository so that you can commit the changes you have

but, you might not want to push the changes even to your local repo.

here is the fix for it:
lets say the module you have is testHG which you cloned it from http://sometestHg/hg
1. Do hg clone testHG testHG_temp – create the clone of the current module, not copy!!
2. cd testHG_temp – move to your new clone
3. hg pull –rebase http://sometestHg/hg – note you have to actually go to the main repo
4. hg push http://sometestHg/hg

Then you can delete the temp directory you created
Happy mercuriying!!

See how you would solve these known algorithm problems

String Ordered Permutation Algorithm Problem

Kadane’s algorithm in C – Dynamic Programming

Find K Complementary numbers from array Java implementation

Finding missing numbers from billion sequential number list file

Implement Queue Using two Stacks – JavaScript algorithm

testing k complementary pairs algorithm with junit

find longest word in the sentence

Get maximum occurring character

Check if two strings are anagrams or not

Check if there are three numbers a, b, c giving a total T from array A

Leave a Reply

Your email address will not be published. Required fields are marked *

*
*