Created
March 31, 2010 18:20
Revisions
-
jnunemaker created this gist
Mar 31, 2010 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,68 @@ alias reload='. ~/.bashrc' alias ea="$EDITOR ~/bin/dotfiles/bash/aliases && reload" alias ee="$EDITOR ~/bin/dotfiles/bash/env && reload" alias eh="$EDITOR ~/bin/dotfiles/bash/heroku && reload" # Processes alias tu='top -o cpu' alias tm='top -o vsize' # Projects alias mm='cd ~/dev/projects/mongomapper' alias joint='cd ~/dev/projects/joint' alias code='cd ~/dev/ruby/code' alias harm='cd ~/Sites/harmony' alias proj='cd ~/dev/projects' # General alias l='ls -lah' alias h='history' alias c='clear' alias o='open .' alias e='mate .' alias tf='tail -f -n 100' alias rbash='source ~/.bashrc' alias httpdump='sudo tcpdump -i en0 -n -s 0 -w - | grep -a -o -E "Host\: .*|GET \/.*"' # GIT alias git=hub alias gb='git branch' alias gl='git log' alias gc='git commit -v' alias gca='git commit -v -a' alias gcam='git commit --amend' alias gd='git diff | mate' alias gp='git pull' alias gpr='git pull --rebase' alias gpu='git push' alias gst='git status' alias gs='git stash' alias gsa='git stash apply' alias gsp='git stash pop' alias gsl='git stash list' alias grc='git rebase --continue' alias gri='git rebase --interactive' alias gpuh='git push && git push heroku master' # mongod run --config /usr/local/Cellar/mongodb/1.2.0-x86_64/mongod.conf alias mstart='launchctl load -w /usr/local/Cellar/mongodb/1.2.4-x86_64/org.mongodb.mongod.plist' alias mstop='launchctl unload -w /usr/local/Cellar/mongodb/1.2.4-x86_64/org.mongodb.mongod.plist' # SVN alias svnclear='find . -name .svn -print0 | xargs -0 rm -rf' alias svnaddall='svn status | grep "^\?" | awk "{print \$2}" | xargs svn add' # RUBY alias irb='irb --readline -r irb/completion' alias i='irb -rubygems' alias ss='script/server' alias sc='script/console' alias sg='script/generate' alias r='rake' alias rt='rake -T' alias restart='touch tmp/restart.txt' alias migrate='rake db:migrate && rake db:test:prepare' #RVM alias r18='rvm use 1.8.7' alias r19='rvm use 1.9.1'