-
Notifications
You must be signed in to change notification settings - Fork 0
/
README
71 lines (59 loc) · 1.71 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
Presentacion en http://tijuanajs.github.io/taller_git
* Acerca de Git
- ¿Por que es necesario?
- Otras opciones en control de versiones
- Distribuidos y centralizados
* Recursos
- Pro Git book. http://git-scm.com/book
- StackOverflow
- Internet
* Caracteristicas de Git
- Guarda snapshots no diferencias de archivos
- Opera independiente de un servidor, casi todo es local
- Integrity checks
- Casi unicamente añade datos
- Tres estados ( Working Dir, Staging Area, Repository (.git) )
* Git config
-$ git config --global user.name "Juan Perez"
-$ git config --global user.email "[email protected]"
-$ git config --global core.editor vim
-$ git config --list
* Ayuda
-$ git help [config]
* Como usarlo!!!
-$ git init
-$ git add [single file/path/dirblob]
-$ git commit -m "Actualizando nombres"
-$ git clone
* Status
- Editar archivo
-$ git status
-$ Editar nombre_archivo.txt
-$ git diff
-$ git add nombre_archivo.txt
-$ git status
-$ git status --staged (--cached)
-$ git commit
-$ git status -s (--short)
-$ git push -u origin master
-$ git log
* Ignorar archivos
- Editar .gitignore
* Eliminar archivos
-$ git rm (-f) file.txt
- Cancelar
+$ git reset HEAD file.txt
* Mover archivos (renombrar)
-$ git mv file.txt new_file.txt
-$ git mv path/file.txt path/new_file.txt
* Git Log
-$ git log
-$ git log -p (diferencias entre los commits)
-$ git log --since=2.weeks
- Opciones en http://git-scm.com/book/en/v2/Git-Basics-Viewing-the-Commit-History
* Github
-$ Configuracion con SSH
-$ https://help.github.com/articles/generating-ssh-keys/
-$ ls -al ~/.ssh
-$ ssh-keygen -t rsa -C "[email protected]"
-$ Añadir llaves a github Paso 4