Diferencia entre revisiones de «Práctica 2 14-15»
De Wiki de EGC
Línea 3: | Línea 3: | ||
* [[Clonando un repositorio existente]] | * [[Clonando un repositorio existente]] | ||
* [[Iniciando un repositorio desde cero]] | * [[Iniciando un repositorio desde cero]] | ||
− | + | * [[Realizando mi primer commit]] | |
− | + | * [[Revisando el historial de cambios]] | |
− | + | * [[Enviando cambios al servidor: push]] | |
− | + | * [[Obteniendo cambios del servidor: pull]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
= branch / checkout = | = branch / checkout = |
Revisión del 21:40 29 oct 2014
- Creando cuenta en git hub
- Establece configuración global
- Clonando un repositorio existente
- Iniciando un repositorio desde cero
- Realizando mi primer commit
- Revisando el historial de cambios
- Enviando cambios al servidor: push
- Obteniendo cambios del servidor: pull
branch / checkout
practica@LSI-160:~/test2.git$ git branch test
practica@LSI-160:~/test2.git$ git branch
* master
test
practica@LSI-160:~/test2.git$ git checkout test
Switched to branch 'test'
practica@LSI-160:~/test2.git$ git branch
master
* test
practica@LSI-160:~/test2.git$ git checkout master
Switched to branch 'master'
practica@LSI-160:~/test2.git$ git branch -D test
Deleted branch test (was b32395c).
practica@LSI-160:~/test2.git$ git branch
* master
clone
git clone git@github.com:egc-profe/test2.git
Cloning into 'test2'...
remote: Counting objects: 9, done.
remote: Compressing objects: 100% (5/5), done.
remote: Total 9 (delta 0), reused 9 (delta 0)
Receiving objects: 100% (9/9), done.
revert
$ git log --oneline da883f2 add .gitignore file b32395c Update README file 9d95b3f This is my initial commit
$ git revert b32395c