Reputation: 3225
I have few questions and i would appreciate your help:
Say, i need specific folders from another repo merged into my repo/working dir. How would i do properly?
If i pull anothers repo and then merge. Afterwards, realizing this is not working, so i call 'hg update -C'. Did this cleaned my repo from the changes i pulled from another repo that i released is not what i need?
Can i do a pessimistic merge where it only adds and updates, but not deletes?
Thanks for helping learn Mercurial
Margots
Upvotes: 0
Views: 100
Reputation: 2682
update -C
will abandon the merge. Do update -C <myVersion>
to get the specific version you want.Upvotes: 1