I have inherited a git repository containing multiple projects in separate directories. I\'d like to split the repository into new individual repositories, one for each proj
You can use git filter-branch to rewrite the history of a project. From the documentation:
To rewrite the repository to look as if foodir/ had been its project root, and discard all other history:
git filter-branch --subdirectory-filter foodir -- --all
Make several copies of your repo, do that for each subdirectory you want to split out, and you should wind up with what you're looking for.