1. Create a web app and put it under version control

Overview

In this exercise you will create a new .Net MVC web application using the dotnet CLI “scaffolding” tool and put the code under version control in a local git repository

Step 1. Git Configuration

Verify your configuration:

git config --list

Step 2. Create a New Project Directory And a Web App

Verify your app:

dotnet run

Step3. Initialize a Git Repository

Step 4. Stage the Files

Step 5. Commit the Changes

Step 6. Check the Commit History

Step 7. Make a change to your code

Happy Version!