Setup application on GitHub repository | ASP.NET Core Tutorial | .Net Core 3.1 MVC Tutorial

Using a central repository is the best way to manage your project code. There are lots of providers available in the market that provide free of cost private and public repository.

In this post, we will create a public repository to save the code of our book store web application.

Steps to setup the GitHub repository

  • Navigate to https://github.com/new
  • Enter all the necessary details like repository name, description, access (public/private), etc.
  • Click on the Create repository button.
  • Navigate to this newly created repository and use the HTTPS URL to clone it on your local (development) system.
  • Make sure you have installed git on your development system.
  • Based on your development status you can push the files in the repo.

Book-Store application repository URL

Our bookstore application is open-source and the entire code is available at https://github.com/webgentle/aspnet-core-mvc.