Before git monorepo, clang-tools-extra inherited its .clang-format and .clang-tidy files from llvm/tools/clang/.clang-format/tidy respectively
When using a git monorepo clang-tools-extra is at the topmost level and there is no parental .clang-format/tidy files to inherit (in llvm-project)
This revision simply copies the .clang-format/tidy files from the llvm/tools/clang up into llvm/tools/clang/tools/extra so that when its laid out as a monorepo, those files are present.