2009-10-12 15:17:36 -04:00
|
|
|
#!/bin/zsh
|
|
|
|
|
|
|
|
# Push and pop directories on directory stack
|
2009-08-28 14:14:17 -04:00
|
|
|
alias pu='pushd'
|
|
|
|
alias po='popd'
|
2009-08-30 20:43:24 -04:00
|
|
|
|
2009-08-31 08:58:53 -04:00
|
|
|
alias ss='thin --stats "/thin/stats" start'
|
2009-10-11 10:09:10 -04:00
|
|
|
alias sg='ruby script/generate'
|
|
|
|
alias sd='ruby script/destroy'
|
|
|
|
alias sp='ruby script/plugin'
|
|
|
|
alias ssp='ruby script/spec'
|
|
|
|
alias rdbm='rake db:migrate'
|
2009-08-28 14:14:17 -04:00
|
|
|
|
2009-10-12 15:17:36 -04:00
|
|
|
# Basic directory operations
|
2009-08-28 14:14:17 -04:00
|
|
|
alias .='pwd'
|
|
|
|
alias ...='cd ../..'
|
2009-10-03 13:48:29 -04:00
|
|
|
alias -- -='cd -'
|
2009-08-28 14:14:17 -04:00
|
|
|
|
2009-10-12 15:17:36 -04:00
|
|
|
# Super user
|
2009-08-28 14:14:17 -04:00
|
|
|
alias _='sudo'
|
2009-09-22 11:39:53 -04:00
|
|
|
alias ss='sudo su -'
|
2009-08-28 14:14:17 -04:00
|
|
|
|
2009-08-31 08:59:34 -04:00
|
|
|
#alias g='grep -in'
|
2009-09-03 14:45:23 -04:00
|
|
|
|
2009-10-12 15:17:36 -04:00
|
|
|
# Git related
|
2009-08-31 08:59:34 -04:00
|
|
|
alias g='git'
|
2009-09-03 14:45:23 -04:00
|
|
|
alias gst='git status'
|
|
|
|
alias gl='git pull'
|
2009-10-11 10:09:10 -04:00
|
|
|
alias gup='git fetch && git rebase'
|
2009-09-03 14:45:23 -04:00
|
|
|
alias gp='git push'
|
|
|
|
alias gd='git diff | mate'
|
2009-10-11 04:56:22 -04:00
|
|
|
alias gdv='git diff -w "$@" | vim -R -'
|
2009-09-03 14:45:23 -04:00
|
|
|
alias gc='git commit -v'
|
|
|
|
alias gca='git commit -v -a'
|
|
|
|
alias gb='git branch'
|
|
|
|
alias gba='git branch -a'
|
2009-10-11 10:09:10 -04:00
|
|
|
alias gdb='git branch -d'
|
|
|
|
alias gcount='git shortlog -sn'
|
2009-10-12 21:34:53 -04:00
|
|
|
alias gcp='git cherry-pick'
|
2009-08-28 14:14:17 -04:00
|
|
|
|
2009-10-12 15:17:36 -04:00
|
|
|
# Show history
|
2009-08-28 14:14:17 -04:00
|
|
|
alias history='fc -l 1'
|
|
|
|
|
2009-10-12 15:17:36 -04:00
|
|
|
# List direcory contents
|
2009-08-31 16:12:58 -04:00
|
|
|
alias ls='ls -F'
|
2009-10-14 09:12:17 -04:00
|
|
|
alias lsa='ls -lahG'
|
2009-10-12 15:17:36 -04:00
|
|
|
alias l='ls -la'
|
2009-09-22 11:39:53 -04:00
|
|
|
alias ll='ls -alr'
|
|
|
|
alias sl=ls # often screw this up
|
2009-08-28 14:14:17 -04:00
|
|
|
|
|
|
|
alias sgem='sudo gem'
|
|
|
|
|
2009-10-12 15:17:36 -04:00
|
|
|
# Find ruby file
|
2009-08-28 14:14:17 -04:00
|
|
|
alias rfind='find . -name *.rb | xargs grep -n'
|
2009-10-11 09:49:24 -04:00
|
|
|
alias afind='ack-grep -il'
|
2009-08-28 14:14:17 -04:00
|
|
|
|
2009-10-12 15:17:36 -04:00
|
|
|
# Git and svn mix
|
2009-08-28 14:14:17 -04:00
|
|
|
alias git-svn-dcommit-push='git svn dcommit && git push github master:svntrunk'
|
|
|
|
|
2009-10-12 15:17:36 -04:00
|
|
|
# TextMate
|
2009-08-31 08:59:16 -04:00
|
|
|
alias et='mate . &'
|
|
|
|
alias ett='mate app config lib db public spec test Rakefile Capfile Todo &'
|
|
|
|
alias etp='mate app config lib db public spec test vendor/plugins vendor/gems Rakefile Capfile Todo &'
|
|
|
|
alias etts='mate app config lib db public script spec test vendor/plugins vendor/gems Rakefile Capfile Todo &'
|
2009-10-26 12:16:19 -04:00
|
|
|
<<<<<<< HEAD:lib/aliases.zsh
|
|
|
|
=======
|
2009-08-31 16:12:58 -04:00
|
|
|
|
2009-10-12 15:17:36 -04:00
|
|
|
## Ruby related
|
|
|
|
# Ruby scripts
|
|
|
|
alias sc='ruby script/console'
|
|
|
|
alias sd='ruby script/server --debugger'
|
2009-09-01 23:46:48 -04:00
|
|
|
|
2009-10-12 15:17:36 -04:00
|
|
|
# Editor Ruby file in TextMate
|
|
|
|
alias mr='mate CHANGELOG app config db lib public script spec test'
|
2009-09-01 23:46:48 -04:00
|
|
|
|
2009-10-26 12:16:19 -04:00
|
|
|
>>>>>>> 886d97f41e72b8662232a2c6b196fb60508e4f67:lib/aliases.zsh
|