From 47d8a44ad199fbc475c3650fb0568e57f29eb43e Mon Sep 17 00:00:00 2001 From: Adam Gorbe Date: Sat, 13 Sep 2025 11:40:21 +0100 Subject: [PATCH] Updated the PR template and fixed the homework --- .github/pull_request_template.md | 14 ++++---------- homework.md | 13 +++++++------ 2 files changed, 11 insertions(+), 16 deletions(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index c3e0510b..90eccd7e 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -1,12 +1,6 @@ @@ -21,8 +15,8 @@ For example, Self checklist -- [ ] I have titled my PR with REGION | COHORT_NAME | FIRST_NAME LAST_NAME | PROJ_NAME -- [ ] My changes meet the requirements outlined in the `README.md` of this task +- [X] I have titled my PR with REGION | COHORT_NAME | FIRST_NAME LAST_NAME | PROJ_NAME +- [X] My changes meet the requirements outlined in the `README.md` of this task ## Changelist @@ -32,4 +26,4 @@ Self checklist You must replace "Briefly explain your PR." with a brief description of the changes you have made. --> -Briefly explain your PR. +I replaced the wrong answers to the correct ones for all 6 questions. diff --git a/homework.md b/homework.md index f7a8449a..2d3b8ee2 100644 --- a/homework.md +++ b/homework.md @@ -2,24 +2,25 @@ ## 1. What is 2 + 2? -5 +4 ## 2. What is JavaScript? -An exciting new play about coffee. +JavaScript is a programming language that developers use to make interactive webpages. ## 3. What three problems does Git & GitHub solve? -When people want to show off code to each other they can put it on GitHub +Git and GitHub have become indispensable tools for software development, enabling collaboration, version control, and streamlined workflows. ## 4. What happens when you `fork` a repository? -You delete it +After forking you create an independent copy of the forked repository. changes made to the forked repo won't affect the original repository. ## 5. What happens when you clone a repository? -It send it to a friend +WWhen you clone a remote repository, you create a local copy of the repository on your computer with all the repository data that GitHub.com has at that point in time, including all versions of every file and folder for the project. + ## 6. What is a Pull Request? -When you send a file over the internet +It's a proposal to merge changes from one code branch (source branch) into another (the target branch), allowing for collaborative code review and discussion before the changes are integrated into the main project. \ No newline at end of file