Use git-merge to merge the two branches, and then git-revert to remove the commit that deleted the content files.
% git checkout Master
% git merge Source
% git revert <content-removal-commit-id>
Or you could do it the other way around:, and remove the content-removal commit before you merge into Master. It's a little more complex, but it might keep your Master history a little cleaner.
% git checkout Source
% git branch SourceMerge
% git checkout SourceMerge
% git revert <content-removal-commit-id>
% git checkout Master
% git merge SourceMerge
