1. Create a new branch called update_classics and switch to it.
git switch -c update_classics
  1. While in update_classics, replace the last title with Game of Thrones, your new classics.md should be like this
Friends 
The Sopranos 
Breaking Bad 
I Love Lucy
Game of Thrones
  1. Stage the changes and commit with message starting with F:
  2. Switch to main branch
  3. While in main, replace the last title with The Wire, your new classics.md should be like this
Friends 
The Sopranos 
Breaking Bad 
I Love Lucy
The Wire
  1. Stage the changes and commit with message starting with `G:
  2. Merge the update_classics into main
git merge update_classics
  1. Don’t panic!