1. Create A .Net Core MVC Webapp
Create the app
dotnet new mvc dotnet new gitignoreRun the app
dotnet runPrepare the app for git
dotnet new gitignore git init git add . git commit -m "Create MVC webapp"
Use VS Code to publish the repository to Github. After that you can push commits with:
git push