Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lnds/ejercicios-clase3-devops
Ejercicios Clase 3
https://github.com/lnds/ejercicios-clase3-devops
Last synced: about 1 month ago
JSON representation
Ejercicios Clase 3
- Host: GitHub
- URL: https://github.com/lnds/ejercicios-clase3-devops
- Owner: lnds
- Created: 2022-10-14T13:02:56.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-10-17T00:12:03.000Z (over 2 years ago)
- Last Synced: 2024-11-05T11:29:34.639Z (3 months ago)
- Size: 7.81 KB
- Stars: 0
- Watchers: 2
- Forks: 23
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Ejercicio 1
Crear repo local:
En Shell ejecutar:
```
$ git init .
```Ejecutar git status:
```
$ git status
```Agregar archivo a git:
```
$ git add README.md
```Configurar identificacion del desarrollador:
```
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
```Hacer el primer commit
```
git commit -m "feat: agrega archivo README".
```Después ejecutar git status
```
$ git status
```Agregar archivo .gitignore con este contenido:
```
venv
```O cualquier otra cosa que quieran ignorar
```
git commit -a -m "actualizar repo con .gitignore y README"
```Nota: `git commit -a` es como hacer un add y un commit al mismo tiempo
# Ejercicio 2
Sincronizando repos
Actualizar el archivo README.md directamente en GitHub.
Luego hacer `git pull` en replit:
```
$ git pull origin master
```Luego modificar el archivo README.md en REPLIT
Normalmente deberían hacer:
```
$ git push origin master
```Pero GitHub ha deshabilitado el push usando https.
Así que usen la interfaz de git de Replit presinando el boton `Commit All & Push ->`