Skip to content

Instantly share code, notes, and snippets.

View VMashanov's full-sized avatar

Vitaly Mashanov VMashanov

View GitHub Profile
@VMashanov
VMashanov / ubuntu_agnoster_install.md
Created April 2, 2019 06:49 — forked from renshuki/ubuntu_agnoster_install.md
Ubuntu 16.04 + Terminator + Oh My ZSH with Agnoster Theme

Install Terminator (shell)

sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install terminator

Terminator should be setup as default now. Restart your terminal (shortcut: "Ctrl+Alt+T").

Install ZSH

@VMashanov
VMashanov / gist:f92697b3f7e2b17f09930e2066836214
Created January 26, 2018 10:50 — forked from CristinaSolana/gist:1885435
Keeping a fork up to date

1. Clone your fork:

git clone [email protected]:YOUR-USERNAME/YOUR-FORKED-REPO.git

2. Add remote from original repository in your forked repository:

cd into/cloned/fork-repo
git remote add upstream git://github.com/ORIGINAL-DEV-USERNAME/REPO-YOU-FORKED-FROM.git
git fetch upstream