1. Create A .Net Core MVC Webapp

  1. Create the app

    dotnet new mvc
    dotnet new gitignore
  2. Run the app

    dotnet run
  3. 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