1. WORKING WITH GIT Flashcards

1
Q

What is Git?

A

Git is what’s called a version control or source control system

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

¿What does Git do?

A

In essence:

  1. it lets you manage changes you’ve made to files over time.
  2. 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.
  3. You can save checkpoints which are called commits and leave messages about what happened at each of these different checkpoints.
  4. The best part is another feature called branching that lets you create alternate versions of your code.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
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.

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

¿What is merging?

A

It is to synchronize created branches.

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