This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
### 1. Agregar los archivos en el stash. ### | |
Antes de cualquier actualización es necesario guardar temporalmente los archivos que tiene en el WIP. | |
```bash | |
$ git add [file] | |
$ git stash | |
### 2. Actualizar cambios con branch remoto. ### | |
```bash | |
$ git checkout [develop] | |
$ git pull [upstream develop] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
echo "Running boostrap.sh..." | |
echo "+---------------------------------------------------+" | |
echo "| Update apt-get |" | |
echo "+---------------------------------------------------+" | |
apt-get update | |