Re: [myhdl-list] Another typo in docs
Brought to you by:
jandecaluwe
From: Christopher F. <chr...@gm...> - 2015-01-06 04:25:58
|
<snip> > > My hg-fu is low, so I've no idea what's going on with multiple heads and > whatnot - I'd appreciate being enlightened. It's not exactly intuitive! > hg multiple heads, usually need to be merged. This is the default case when you are modifying your local copy (tip) and then pull from somewhere else. The cure is typically a merge. If you merge right after a pull all works. if not you might have to specify the heads to merge, something like: >> hg heads >> hg merge tip ... More information here: http://mercurial.selenic.com/wiki/MultipleHeads This post uses nice diagrams (Directed Acyclic Graph (a DAG)) to show how heads are created and merged, and merge vs. rebase. This might help visualize what is going on. http://softwareswirl.blogspot.com/2009/04/truce-in-merge-vs-rebase-war.html This might be helpful: http://mercurial.selenic.com/wiki/GitConcepts Regards, Chris |