I would like to reorganize a git repo to manage multiple projects. I have one like
my-org
|--cool-repo
|--file-one
|--file-two
And I would like to make it like
my-org
|--cool-repo
|--project-one
|--file-one
|--file-two
|--project-two
I've read some of the git docs, but I am unsure about what commands I should study. I do not need to merge code, or, net, delete anything.
I do not want to break anything.
As my team starts second, third, and later projects, I'd like to organize "subdirectories" or "subprojects" (I am unsure of the term to use) to hold docs related to these added projects.
What should I do, or where can I best resume investigation?
Thanks!