By using the UaaS.cmd a Git repository was created at the same level as the solution. That's where source control for the .Core project is stored. You can already start committing to that repository.
The only thing that's missing is a remote for the Git repository to get distributed elsewhere. You can choose yourself wat do with it: using Github or Visual Studio Team Services as remote storage for example.
Source controlling .Core project
Hi,
I've used the Uaas.cmd tool to create a VS solution with a .Web and a .Core project in it.
The .Web project is now source controlled by Git, which works like a charm.
What would be a good way to add source control to the .Core project? In the same VS solution.
By using the UaaS.cmd a Git repository was created at the same level as the solution. That's where source control for the .Core project is stored. You can already start committing to that repository.
The only thing that's missing is a remote for the Git repository to get distributed elsewhere. You can choose yourself wat do with it: using Github or Visual Studio Team Services as remote storage for example.
The command to add a remote is:
git remote add origin https://github.com/user-account/repository-name.git
is working on a reply...