Aprendiendo GIT
Un muy buen link para aprender GIT en 15 minutos.
Mi resúmen.
cd /carpetita_test
git init
git status
# Config the user/email
git config --global user.email "you@example.com"
git config --global user.name "Your Name"
# add a file
git add fichero.txt
git add *.c
git log
git push -u origin master
username: xxxxxxx
password: ppppppp
Comentarios
Publicar un comentario