Skip to content

Instantly share code, notes, and snippets.

#!/usr/bin/env bash
echo "Running boostrap.sh..."
echo "+---------------------------------------------------+"
echo "| Update apt-get |"
echo "+---------------------------------------------------+"
apt-get update
@j-lagunas
j-lagunas / new_gist_file
Last active December 20, 2015 23:59
Merge con Work In Progress(WIP)
### 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]