Comment on Can I have multiple Git repos from a single project folder?Comments−shorbaji15yIf you have these components in separate folders within the main project folder simple create a git repo within each folder. $cd engine $git init . $cd ../web-files $git init . If you have one folder within the other, you can do the same but use .gitignore
Comments
If you have these components in separate folders within the main project folder simple create a git repo within each folder.
If you have one folder within the other, you can do the same but use .gitignore