GitHub Flashcards
git clone
descargas del project remote y lo pones en tu compu local
git fetch
bajas las actualizaciones del repositorio remoto y nuevas branches si hay
git init
empezar un nuevo repositorio
git commit
cuando se hacen cambios locales, se hace commit
git push
hace push de los cambios locales y los mate en el rempote
git diff
ver cambios unstaged de la current branch
git pull
agarras los cambios que hubo en el remote y les haces merge con el local branch
git add
añade
gitt branch
muestra todas las branchs de tu repository
git config –
configurar
3.git config –-global user.name “Ashish Madaan”
u
git config –-global user.email ashishmadaan6@gmail.com
u
cd store
To go inside the directory and work upon its contents.
git init
To create a local git repository for us in our store folder.This will help to manage the git commands for that particular repository.
git status
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