Felice Pollano
Felice Pollano

Reputation: 33242

Mercurial: patching with a non tracked branch

I've got an Open Source project tracked with Hg. A collegue did some modification without using any version control, and my version also was modified. Now I want to merge the modification he did ( without any version control ) into my trunk, what's the best operation cycle in this case ? Thank all,

Upvotes: 0

Views: 43

Answers (1)

zerkms
zerkms

Reputation: 254886

Ask him to make a general patch using diff tool and apply it with patch on your side.

To have this process passed smoother you'd probably update back to the revision your colleague has and then merge 2 heads.

Upvotes: 2

Related Questions