GitHub Flashcards

1
Q

git clone

A

descargas del project remote y lo pones en tu compu local

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

git fetch

A

bajas las actualizaciones del repositorio remoto y nuevas branches si hay

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

git init

A

empezar un nuevo repositorio

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

git commit

A

cuando se hacen cambios locales, se hace commit

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

git push

A

hace push de los cambios locales y los mate en el rempote

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

git diff

A

ver cambios unstaged de la current branch

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

git pull

A

agarras los cambios que hubo en el remote y les haces merge con el local branch

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

git add

A

añade

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

gitt branch

A

muestra todas las branchs de tu repository

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

git config –

A

configurar

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

3.git config –-global user.name “Ashish Madaan”

A

u

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

git config –-global user.email ashishmadaan6@gmail.com

A

u

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

cd store

A

To go inside the directory and work upon its contents.

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

git init

A

To create a local git repository for us in our store folder.This will help to manage the git commands for that particular repository.

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

git status

A

To see whats changed since last commit.It shows all the files that have been added and modified and ready to be commmitted and files which are untracked

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