I have some code from a C# project which I trying to commit with Git into Bitbucket.
The C# code is in one folder and inside this folder are two other folders or projects, but when I try to commit these projects at the step when you call git add --all it shows a warning that I have two repositories in one, and only one of the projects is committed to Bitbucket.
There is only one remote repository for all of the c# code, and want to keep things together. The folder structure is as follows:
-Parent Folder -Project One Folder -Project Two Folder (this contains the solution file) As I said it is only the first folder Project One that is saved to Bitbucket. I have tried to upload each Project folder separately, but it throws an error saying there is not a repository for these folders.
So, my question is there a way with Git where I can upload from the Parent Folder both folders into one repository?
git clone? There seem to be two local git repositories, i.e. two.gitfolders, maybe one in the parent folder and one in another folder? What exactly is the warning messagegit add --allis showing?