Skip to content

lecture examples for a Spring Boot Java application with Thymeleaf and MySQL

Notifications You must be signed in to change notification settings

Carolista/java-lecture-examples-art-gallery

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 

Repository files navigation

java-lecture-examples-art-gallery

Lecture examples for chapters 9-10 and 13-20: a Spring Boot Java application with Thymeleaf and MySQL

IMPORTANT: When you fork, un-check the "Copy the main branch only" box to ensure you have a copy of all starter code and solution branches as well

Use individual branches to git checkout starter code or solution for each class.

Note: There is no starter code for chapter 10 because the project is meant to be created with Spring Initializr as part of the lecture example.

HOW TO PULL DOWN CHANGES AFTER FORKING

If I make changes to the source code in my original repo after you have forked your own copy, you can follow these instructions to pull in my changes on your local machine:

STEP 1:

If you have not yet set the upstream connection, do this first in the terminal inside your forked repository:

git remote add upstream https://github.com/Carolista/java-lecture-examples-art-gallery

Now you have two remotes, origin (your fork) and upstream (my original repo)

STEP 2:

In order to pull in changes locally, you will need to fetch anything new from my repo:

git fetch upstream

STEP 3:

For any branch you wish to update, first switch to that branch, then merge in my changes.

git checkout branch-name
git merge upstream/branch-name

If you run into merge conflicts, accept the incoming changes from upstream. If you have to manually edit the conflicts before finishing the merge commit, use my original repo as a guide.

About

lecture examples for a Spring Boot Java application with Thymeleaf and MySQL

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published