MIDTERM Flashcards

1
Q

What is Commit?

A

A commit is used to save changes to your local Git repository.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is Push?

A

After you have made changes to your local repository and committed them, you may want to push those changes to a remote repository, such as GitHub or GitLab.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is Pull?

A

Pulling is used to retrieve the latest changes from a remote repository and merge them with your local repository.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is Branch?

A

Creating a new branch allows you to work on a copy of the code without affecting the main code base, enabling you to experiment and make changes without interfering with the main code base or affecting other contributors.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly