forked from ericmeyer/bashrc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaliases
More file actions
28 lines (24 loc) · 812 Bytes
/
aliases
File metadata and controls
28 lines (24 loc) · 812 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
alias cuc='clear; cucumber -r features'
alias jrake='jruby -S rake'
alias svnst="svn st|grep -v '^X'|grep -v '^Performing'|grep -v '^$'"
alias svnaddall="svn st | grep '^\?' | tr '^\?' ' ' | sed 's/[\\t]*//' | sed 's/[ ]/\\ /g' | xargs svn add"
alias siw="svn propedit svn:ignore ."
alias sdm="svn diff|subl"
alias g='git'
alias gg='git clone'
alias gp="git pull;git submodule init -q;git submodule update"
alias gs='git status -s'
alias gdc='git diff --cached'
alias gdm='git diff'
alias gsm='git show'
alias gtg='git commit -a'
alias gcl='git clean -f'
alias bi='bundle install'
alias bu='bundle update'
alias be="bundle exec"
alias bx="bundle exec"
alias bo="bundle open"
alias gib="gem install bundler --no-ri --no-rdoc"
alias redcar=wrapped_redcar
alias crs="clear; be rspec -c"
alias crb="clear; ruby"