parent
98d8f92af7
commit
b9b1715cbf
@ -1,4 +1,4 @@
|
||||
### WORKFLOWS
|
||||
## WORKFLOWS
|
||||
-----
|
||||
#### **Flujos de trabajo colaborativo**
|
||||
```
|
||||
@ -8,9 +8,9 @@ SourceForge - GitLab - BitBucket - Gogs - **Gitea** - GitHub ...etc
|
||||
Ofrecen servicio de **hosting** de repositorios con interfaz web grafica
|
||||
|
||||
-----
|
||||
#### Exploración + Clonación y Colaboración
|
||||
### Exploración + Clonación y Colaboración
|
||||
|
||||
##### Explorar y Clonar
|
||||
#### Explorar y Clonar
|
||||
```
|
||||
git clone [repo ssh o HTTPS]
|
||||
|
||||
@ -19,7 +19,7 @@ git clone [repo ssh o HTTPS]
|
||||
|
||||
Clona todos los archivos, incluyendo historial"
|
||||
```
|
||||
##### Colaboración
|
||||
#### Colaboración
|
||||
```
|
||||
"Si se posee un repositorio personas pueden proponer colaboraciones
|
||||
y se pueden aceptar o nó"
|
||||
@ -35,3 +35,31 @@ git merge
|
||||
|
||||
git push
|
||||
```
|
||||
##### Secuencia de uso común
|
||||
```
|
||||
"Iniciar Repo"
|
||||
git init
|
||||
|
||||
"Añadir Origen"
|
||||
git remote add origin ssh://gite@192.168.0.8:333/jp.av.dev/test_repo.git
|
||||
|
||||
"Descargar Repo remoto a area fetch"
|
||||
git fetch origin
|
||||
|
||||
"Fusionar local(master) con origin(fetch)"
|
||||
git merge origin/master
|
||||
```
|
||||
***...tiempo despues y codigo añadido por distintos users en repo remota y local...***
|
||||
```
|
||||
"Actualizar fetch con origin(remoto)"
|
||||
git fetch origin
|
||||
```
|
||||
**IMPORTANTE: Resolver conflictos antes de realizar merge** `git status`
|
||||
```
|
||||
"Fusion"
|
||||
git merge origin/master
|
||||
|
||||
"Subir cambios a Origin (Repo remota)"
|
||||
git push origin master
|
||||
|
||||
```
|
Loading…
Reference in New Issue
Block a user