Git Y Github Flashcards

Aprender los comandos de git

1
Q

Que hace el comando:

Git clone

A

Clona un repositorio y lo descarga en tu computadora

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

Que hace el comando:

Git add

A

Agrega el archivo a “staging” para que git lo empieze a rastrear

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

Que hace el comando:

Git commit -m mensaje

A

Crear un commit y deja un mensaje, (una version)

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

Que hace el comando:

Git status

A

Muestra la rama y el estado de los archivos

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

Que hace el comando:

Git push

A

Envia los cambios del repo a github

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

Que hace el comando:

Git pull

A

Trae los cambios del repo remoto a nuestra pc

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

Que hace el comando:

Git log

A

Muestra el historial de los commits

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

Git commit -am

A

Hace un add y un commit

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

Git reset HEAD “nombre archivo”

A

Saca el archivo de staging

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

Git reset –hard ‘hash commit’

A

Vuelve una version atras y quita todo lo que este en staging

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

Por que es importante usar git revert?

A

Por que no altera el historial de commits

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

Que hace el comando:

Git branch

A

Muestra las ramas que existen en tu proyecto

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

Que hace el comando:

Git branch + “nombre de rama”

A

Crea una nueva rama

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

Que hace el comando:

Git checkout + rama

A

Sirve para cambiar de rama

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

Que hace el comando:

Git Merge + nombre rama

A

Fusiona una rama a la rama en la que te encuentras

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