I have a solution which is built from projects coming from different submodules.
I notice that VisualStudio2019 recognize only the the project that comes from solution repository as GIT source control. The other projects which come from other submodules does not recognized as GIT source control in VS.
What is an easiest way to manage solution with multiple submodules in VS2019?
RepC - is repository which contains solution and ProjC
RepD - is a repository which contains ProjD
RepD is a submodule of RepC
As you can see RepD is not recognized as GIT source control
Does VisualStudio support multiple GIT submodules?
887 Views Asked by RRR At
1
There are 1 best solutions below
Related Questions in GIT
- Push mysql database script to server using git
- Git show's file path
- Git > diffs filtered, show only certain changed classes/files
- Pushing to git repository hosted by Visual studio online without entering user name and password
- How do I create my own Git branch to work on?
- Git init --bare giving error fatal: Out of memory? mmap failed: No such device
- Sub-directory into independent repository and later merge back into main repository
- How to find the Git Revision Hash in a synced SVN repo using SubGit?
- eclipse errors when try to change to master git branch
- How to have Heroku build my development branch on a staging server?
- Is "Merged in" a commit message created by bitbucket, or git?
- Git: Multiple projects under one directory
- Permission denied hg-git
- Is it possible to clone a private git repo without adding ssh keys
- Track file in master repository which is ignored in submodule
Related Questions in VISUAL-STUDIO
- NuGet - Given a type name or a DLL, how can I find the NuGet package?
- Exception thrown at 0x0131EB06 Visual Studio
- Visual Studio 2015 Cordova Plugin Add Fail
- Cannot find InvalidCastException in C# Application
- generating C# code file during Visual Studio build
- Can I deploy multiple instances of my application on the same windows phone?
- Close the Solution Explorer window
- How to generate entity framework code-first migrations without using the package manager console?
- Implementing callback function for dialog-based application
- VB.net: How to make original variable value fulfill 2 statements?
- DLL being marked as DELETEPENDING
- String tokenizing in Visual Studio C++
- How to use "Multicharts Studies" in Visual Studio 2013?
- Programs Will Not Run In Visual Studio
- VB.Net: Display total when check boxes are checked
Related Questions in GITLAB
- I can push but not pull git
- Git first pull and push to master issue
- Can you create a project on GitLab using ssh?
- Adding A Certificate Authority in GitLab?
- GitLab shows deleted branches
- Files deleted with git filter-branch reappear after push and pull back
- Gitlab LDAP (Active Directory) Authentication without Server Side Access
- Cannot upgrade gitlab from 7.9.4
- GIT - Split working space by user (designer vs programmer)
- git diff not working on a bare repo, post-receive hook
- gitlab: Windows: How to use chmod and fix "Get Permission denied (publickey). fatal: Could not read from remote repository"
- git pull returns, fatal: protocol error: bad line length character: No s
- Custom post-receive hook with gitlab
- Installing GitLab CI Runner on Raspberry Pi 2 (Raspbian)
- From development to deployment with Git
Related Questions in VISUAL-STUDIO-2019
- Multiple "The system cannot find the path specified" messages on running "Developer Command Prompt for VS 2019"
- Problem With Publishing a Self Contained EXE (Issue With Nuget)
- OpenCV haarcascades loading is NOT working at all
- The default ASP.NET Core + React template in Visual Studio 2019 doesn't work
- Visual Studio 2019 using 32-bit FileTracker with 64-bit toolset
- How to eliminate the intellisense warning under the <<<>>> in vs2019
- Problem searching for specific Mails using MS-Graph API
- Visual Studio 2019 Test Explorer did not find c++ google tests
- MSBuild 16.0 not finding its own dependent assemblies when loaded through MSBuildLocator
- Report viewer is not showing crystal report
- How to change default C++ language standard in Visual Studio 2019?
- Using Telerek Just Decompile to re-create a .NET source projectL: Unable to debug as normal
- Does VisualStudio support multiple GIT submodules?
- Passing environment variables to tests in Visual Studio 2019
- Visual Studio 2019 Keeps Directing to MetaData Files when using Go To Definition
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
When you switch to folder view in the solution explorer, you can open the solution files for the submodules. Then VS will recognize those submodules in source control and allow you to commit to them...
I made an example, but I changed some names to "DELETE" so I'll remember to delete them later:
This is how my main solution looks before and after adding the submodule project (right click the solution and add existing project):
I then clicked to change to the folder View. I can select the top option which is "RepC" for you which will take me to the "ProjC" folder view:
Once I click on the submodule's solution, I am taken to that submodule's Repo and solution: