This is a HowTo for copying files from a <SOURCE-BRANCH> into the current one.
- git
checkout the <CURRENT-BRANCH> (where you wanna merge/copy the files to)
git checkout <CURRENT-BRANCH>
# e.g.
git checkout dev/somethingcopy the file from <SOURCE-BRANCH>
git checkout <SOURCE-BRANCH> <FILE1> <FILEn> <FOLDER1> <FOLDERn>
# e.g.
git checkout feature/awesome variables.tfnow the variables.tf-file in the dev/something-branch is exchanged with the one from feature/awesome-branch