Skip to content

Instantly share code, notes, and snippets.

View corbanb-snippets's full-sized avatar

Corban Baxter corbanb-snippets

View GitHub Profile
@corbanb-snippets
corbanb-snippets / gist:2006911
Created March 9, 2012 15:11
JS: Class Snippet
/**
@namespace PX4.Class
@author
@date
@description
@requires
*/
var PX4 = PX4 || {};
@corbanb-snippets
corbanb-snippets / GIT: Global Config
Created March 9, 2012 05:36 — forked from IanVaughan/gist:1325768
git globals and alias
# http://gitready.com/intermediate/2009/02/06/helpful-command-aliases.html
git config --global alias.rb rebase
git config --global alias.st status
git config --global alias.ci commit
git config --global alias.br branch
git config --global alias.co checkout
git config --global alias.df df
git config --global alias.lg log -p