So I know we can checkout files from other branches into our current working branch with :
git checkout [someOtherBranch] [path/to/file] What I'm hoping is that something like this is possible :
git checkout [someOtherBranch] [path/to/file] [path/we/want/to/copy/to] Is this possible?
cherrypickthe commits for that file, maybe.