Repositories: How to move content from one repository to another one
Goal
Steps
git clone git@github.com:AlexRogalskiy/<source-repository>.git
cd <source-repository>
git-filter-repo --path <path-to-extract> \
--path <path-to-extract> \
--path <path-to-extract> \
...git clone git@github.com:AlexRogalskiy/<target-repository>.git
cd <target-repository>
git remote add new-content <url>
git fetch new-contentLast updated