Reputation: 11
I'm trying to use GIT with Visual Studio. The situation is this:
The service solution includes the Routines project. As you can see the Routines project is in an external folder from Service solutions. I want to create my GIT repository in Service folder and not in Base folder. VS tells me projects external will be not included.
What is the best practice? I must make a copy of my routines project into my service folder or there is another way?
Upvotes: -1
Views: 282
Reputation: 27
If you put all projects within same base folder e.g: basefolder/project1, basefolder/project2 and then when creating git repo you can give path to basefolder. This way all folders/files within basefolder will be included/tracked. Tested this on vs 2022 community version.
Upvotes: 0