-
Notifications
You must be signed in to change notification settings - Fork 0
/
egg-comandos-Github
57 lines (46 loc) · 1.88 KB
/
egg-comandos-Github
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
GIT - COMANDOS
- VERSION
git --version
git version
Ambos comandos sirven para saber qué versión de GIT tenemos instalada
en nuestra pc. En caso de que no aparezca nada, significa que no tenemos
GIT instalado.
- CONFIGURACIÓN DE DATOS
git config --global user.name "Martín Pérez"
git config --global user.email "martinperez@gmail.com"
git config --list
ls
- CONFIGURACIÓN DE RAMA EN REPOSITORIO LOCAL
git branch -M main
Sirve para modificar el nombre de la rama master por main para que no
haya conflictos con la rama main del repositorio remoto.
git config --global init.defaultBranch main
Sirve para modificar la rama pricipal por default a main
para que la proxima vez que hagamos un git init se cree la rama main y
no la master
- BRANCH
CREACIÓN DE UNA RAMA:
git branch <nombre-de-la-rama>
git branch minuevarama (EJEMPLO)
Por medio de este comando, se creará una rama de forma local.
Ahora bien, si queremos enviar nuestra rama creada al repositorio
remoto, debemos aplicar el siguiente comando:
git push <nombre-remoto> <nombre-de-la-rama>
git push origin minuevarama (EJEMPLO)
LISTAR LAS RAMAS EXISTENTES:
git branch
git branch --list
git branch -a
ELIMINAR UNA RAMA:
git branch -d <nombre-de-la-rama>
git branch -d minuevarama
git merge <nombre-de-rama>
git push origin --delete <nombre-de-rama>
git branch -d nombre-rama
git fetch - 1º paso
git checkout develop - 2ª paso
git branch nueva-rama - 3ª paso
cambio en el archivo
git push origin nueva-rama
git remote add origin https://TOKEN@github.com/USUARIO-QUE-CREO-EL-REPOSITORIO/NOMBRE-DEL-PROYECTO.git --> Sirve para agregar un repositorio remoto como "origin" con nuestro public access token y poder realizar nuestros push autenticándonos
git remote set-url origin https://TOKEN@github.com/USUARIO-QUE-CREO-EL-REPOSITORIO/NOMBRE-DEL-PROYECTO.git --> Sirve para cambiar el link del repositorio remoto "origin" si es que ya lo habíamos creado