Skip to content
Open
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
13 changes: 8 additions & 5 deletions questions.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,45 +5,48 @@
What are some of the problems that git solves?

<!-- Answer the question under this comment -->

Stores code due to the other features it provides.
Version Control System: The code which is stored in Git keeps changing as more code is added.

## Question 2

What does clone do?

<!-- Answer the question under this comment -->

Creates a local copy of the remote repo.

## Question 3

What does commit do?

<!-- Answer the question under this comment -->

Saves your changes to the local repository.

## Question 4

What does forking do?

<!-- Answer the question under this comment -->


copy of a repository.
## Question 5

Why is a pull request necessary?

<!-- Answer the question under this comment -->
Let you suggest that changes from one branch be merged into another branch.


## Question 6

What does history show us in Git?

<!-- Answer the question under this comment -->
let you manage and keep track of your source code history


## Question 7

Why do we commit a message?

<!-- Answer the question under this comment -->
To save changes to a local repository.