Skip to content

Instantly share code, notes, and snippets.

View naiieandrade's full-sized avatar
🎯
Focusing

Naiara Andrade naiieandrade

🎯
Focusing
View GitHub Profile
@naiieandrade
naiieandrade / Install_robo3t_Ubuntu.md
Created October 7, 2021 20:30 — forked from abdallahokasha/Install_robo3t_Ubuntu.md
Install Robo3t on Ubuntu18.04 and make a desktop icon for it

Install Robo3t On Ubuntu 18.04

Download the package form Robo3t or using wget
wget https://download.robomongo.org/1.2.1/linux/robo3t-1.2.1-linux-x86_64-3e50a65.tar.gz
Extract here using

tar -xvzf robo3t-1.2.1-linux-x86_64-3e50a65.tar.gz

@naiieandrade
naiieandrade / git-update-fork.sh
Created April 19, 2018 01:52 — forked from rdeavila/git-update-fork.sh
Git: como atualizar um fork com as mudanças do original?
#!/bin/bash
# Adicione um novo remote; pode chamá-lo de "upstream":
git remote add upstream https://github.com/usuario/projeto.git
# Obtenha todos os branches deste novo remote,
# como o upstream/master por exemplo:
git fetch upstream