1. WORKING WITH GIT Flashcards
1
Q
What is Git?
A
Git is what’s called a version control or source control system
2
Q
¿What does Git do?
A
In essence:
- it lets you manage changes you’ve made to files over time.
- You’re in charge of documenting the history of your project, with the added benefit of being able to jump back and forth through time.
- You can save checkpoints which are called commits and leave messages about what happened at each of these different checkpoints.
- The best part is another feature called branching that lets you create alternate versions of your code.
3
Q
¿What is a branch?
A
A branch is a copy of your project that you can work on with or without changing the original.
4
Q
¿What is merging?
A
It is to synchronize created branches.