MIDTERM Flashcards
1
Q
What is Commit?
A
A commit is used to save changes to your local Git repository.
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.
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.
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.