Toggle navigation
Home
Presentations
Técnicas
Contact us
My cart
Sign in
We use cookies in this website. Read about them in our
privacy policy
. To disable them, configure your browser properly. If you keep using this website, you are accepting those.
OK
Conocimientos sobre Git
Introducción a GIT
¿Que es GIT?
*
Lenguaje de programación
Sistema de control de versiones
Subsistema de ficheros
Entorno de desarrollo
¿Con que comando se inicializa un repositorio local?
*
git config
git clone
git init
¿Que hace el comando git clone?
*
Clona el repositorio actual
Clona el repositorio indicado en el parámetro url del comando
Clona el repositorio actual al repositorio indicado en el parámetro url del comando
¿Cuáles son los estados o áreas de un repositorio?
*
working directory, staging area, repository
working area, staging area, repository
working directory, staging area, remote repostory
¿Que comando actualiza el staging area con el contenido del repositorio local?
*
git status
git commit
git add
¿Que comandos nos muestran información de los commits?
*
git status
git log
git show
git diff