1. Create A .Net Core MVC Webapp
Create the app
dotnet new mvc dotnet new gitignore
Run the app
dotnet run
Prepare 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