Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 4 additions & 10 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,6 @@
<!--

You must title your PR like this:

REGION | COHORT_NAME | FIRST_NAME LAST_NAME | PROJ_NAME

For example,

London | May-2025 | Carol Owen | Sprint-1
London | Sept-2025 | Adam Gorbe | Sprint-1: Homework

-->

Expand All @@ -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

Expand All @@ -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.
13 changes: 7 additions & 6 deletions homework.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.