Below is a list of useful resources for working on your lesson.
To update your lesson to match the current version of the styles template, use the following steps:
- checkout a new branch
- pull the head branch of the styles repo (which is fetch and merge)
- Fix any merge conflicts and commit the merge
- push the new branch up to your repository and create a pull request
git checkout -b update-styles
git pull https://github.com/carpentries/styles
# FIX MERGE CONFLICTS
git push -u origin update-styles
e.g. checking out pull request #25
into a branch called pr-25
git fetch origin pull/25/head:pr-25
git checkout pr-25