Skip to content

Instantly share code, notes, and snippets.

View arion's full-sized avatar

Abushaev Denis arion

View GitHub Profile

Upgrade from PostgreSQL 9.3 to 9.4 on Ubuntu 14.10

Install postgresql-9.4

$ sudo apt-get install postgresql-9.4

Then psql version should be 9.4.x

$ psql --version
@arion
arion / gist:1250251
Created September 29, 2011 08:06 — forked from SkyWriter/gist:1250250
My aliases
alias b='bundle'
alias be='b exec'
alias ber='b exec rake'
alias beu='b exec uniqfrd'
alias bi='b install --path vendor'
alias bil='bi --local'
alias binit='bi && b package && echo '\''vendor/ruby'\'' >> .gitignore'
alias bu='b update'
alias create-repo='touch .gitignore && git add .gitignore && git commit -m '\''Created repo'\'' && git checkout -b develop'
alias g='git'