Skip to content

Each time you come back

ProgramX-NPledger edited this page Sep 9, 2024 · 5 revisions

Get the latest version

Don't forget to get the latest version of the code (for your current branch). From any folder in the repository, update your local Git repository using:

git pull origin (assuming origin is pointing to GitHub)

Update your database schema

There may be changes to the database and its schema. Be sure to update your local copy by running (from the main Solution project folder):

dotnet ef database update --project Taggloo4.Data.EntityFrameworkCore --startup-project Taggloo4.Web

The --project argument specifies the project containing data migrations. The --startup-project argument specifies the project that is used to initialise configuration.

Clone this wiki locally