This project is a collaborative collection of simple HTML recipes. You can use AI tools to help you!
- Clone the repo:
git clone https://github.com/SCE-Development/git-workshop.git
cd git-workshop
- Once you're in the project directory, run the below command. It will output a file path, which you can copy and paste into your browser URL input to open the project.
echo "$(pwd)/index.html"
If on windows:
echo %cd%\index.html
Make 3 pull requests as described below. Branch names should follow a convention of:
NAME/DATE_short_description
, i.e. andy/20270601_add_pancake_recipe
- Create a new
.html
file with your recipe. - Link to it from
index.html
. - In your pull request description, include a screenshot of your recipe page.
- On a separate branch, open a PR that changes one ingredient or step in an existing recipe.
- On a third branch that branches from the same branch as your recipe PR, add a
<div>
below your recipe labeled "Food Critic Review" or similar. - This PR should depend on the recipe PR and point to your original recipe branch
- In this PR description, add a note like
merge #NUMBER first!
main
│
├───▶ YOUR_NAME/DATE_add-my-recipe (PR #1: Your new recipe)
│ │
│ └──▶ YOUR_NAME/DATE_add-food-critic (PR #3: Review section)
│
└───▶ YOUR_NAME/DATE_update-existing (PR #2: Edits existing recipe)
for an example of the 3 PRs, see: