I have two branches. default
and dev
.
default
is the main, dev
is development branch. Now i did something in dev and committed and pushed to dev with tortoisehg.
Now I want to merge dev into default. what I did:
hg update default
hg merge dev.
but I am getting this:
abort: outstanding uncommitted changes (use 'hg status' to list changes)
.
what should I do to get the dev changeset into default?
please help.