Live data from Hacker News

Git read-tree: Carbon-Copy without Merge Hell

blog.zenosmosis.com

1–2 of 2 posts

Re: Git read-tree: Carbon-Copy without Merge Hell

#2
git read-tree is a photocopier. It copies the state of another branch directly into your staging area. It doesn’t care about history, ancestors, or shared code. It just puts the files where you want them.

(And best of all, it’s already included with git, so there’s nothing else to download or install.)