forked from danhorst/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbash_aliases
39 lines (34 loc) · 1.1 KB
/
bash_aliases
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
29
30
31
32
33
34
35
36
37
38
39
alias ll='ls -l'
alias la='ls -la'
alias v='vim'
alias tz='tar -xzvf'
alias tidyx='tidy -mi -xml -utf8'
alias jst='java -XX:+CMSClassUnloadingEnabled -XX:PermSize=64M -XX:MaxPermSize=128M -jar start.jar'
alias ct='ctags -R -f ctags --exclude=.git --exclude=log --extra=+f --langdef=file --langmap='file:.rb.erb''
alias pngc='pngcrush -rem alla -reduce -brute'
alias bx='bundle exec'
alias r='bx rake'
alias g='bx guard'
alias ts='bx thin start'
alias mm='bundle exec middleman'
alias ga='git add . && gst'
alias gamd='git commit -a --amend --no-edit'
alias gb='git branch -vv'
alias gba='git branch -a'
alias gbl='git branch -l'
alias gca='git commit -v -a'
alias gd='git diff'
alias gdh='git diff HEAD'
alias gH='git reset --hard HEAD'
alias gl='git lg'
alias glp='gl -p'
alias gmt='git mergetool'
alias gpo='git push origin master'
alias gpr='git pull --rebase'
alias grc='git rebase --continue'
alias gsh='git show'
alias gst='git status --ignore-submodules=dirty'
alias gsd='git svn dcommit --username dbrubak1'
alias gsf='git svn fetch'
alias gsr='git svn rebase'
alias ia="open $1 -a /Applications/iA\ Writer.app"