===Re:=== So, if I understand correctly, you've manually applied (manually applying diffs or something?) your changes from the release branch to the dev branch, and now want to inform git of what happened? If so, you could commit what you have now, use a graft to change its parentage, then git-filter-branch to actually update the commit object. Something like this, I believe: git commit -m 'Merge .....' echo '<full 40-character commit ID of the merge> <parent on the dev branch> <parent on the release branch>' >> .git/info/grafts git-filter-branch dev~..dev ## You can remove (that line from) .git/info/grafts now In the future, you may want to perform this sort of incremental merge by simply git merging intermediate revisions in the release branch. ===end=== That's very interesting. I did not find 'grafts' in the documentation, but I looked for it now that I know about it. So you can add another parent to the graph just by adding a line to that file. BTW, filter-branch isn't available on msysgit. But leaving it in that grafts file should be OK -- is that pushed/pulled with everything else? --John TradeStation Group, Inc. is a publicly-traded holding company (NASDAQ GS: TRAD) of three operating subsidiaries, TradeStation Securities, Inc. (Member NYSE, FINRA, SIPC and NFA), TradeStation Technologies, Inc., a trading software and subscription company, and TradeStation Europe Limited, a United Kingdom, FSA-authorized introducing brokerage firm. None of these companies provides trading or investment advice, recommendations or endorsements of any kind. The information transmitted is intended only for the person or entity to which it is addressed and may contain confidential and/or privileged material. Any review, retransmission, dissemination or other use of, or taking of any action in reliance upon, this information by persons or entities other than the intended recipient is prohibited. If you received this in error, please contact the sender and delete the material from any computer. -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html