How can I merge 2 branches in my local repository
- by michael
Hi,
I have 2 branches in my hg repository:
1. default
2. new-feature
I tried following this: http://mercurial.selenic.com/wiki/NamedBranches,
I switch back to default by 'hg update -c default'
but how can I merge my commits in 'new-feature' to 'default'.
I did "hg pull new-feature", it said "repository new-feature not found"!
Thank you.