Archive for category Mercurial
Getting the difference between two branches in mercurial
Say you have branch named branch-one and the other being default
If you want to know what difference is there between the two, say what is in the branch-on but not in the default do:
hg log -r "'branch-one' - default"
There are also a couple of predicates that you can assign – just search with “hg revsets”
Yup Yup Yup
python headers are required to build mercurial error while installing
OK, I have been biking mercurial for a while and wanted to upgrade to the latest version
In the process of that, I got the error python headers are required to build mercurial
Here is the fix.
Just add
sudo apt-get install build-essential gcc python-dev
which it was missing.
For re-installation follow the steps listed on https://help.ubuntu.com/community/Mercurial
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!!
Searching mercurial revision by log
Posted by gullele in Mercurial on May 16, 2012
In mercurial you might be searching for specific revision and all you remember might be the comment you provided while committing. So in order to find it by the log message use
hg mercurial revision search, hg search, log comment search in hg, mercuiral search, searching by comment in hg, serch in mercuiral by log
Leave a Comment