forked from lokidokicoki/dotfiles
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbash_aliases
67 lines (67 loc) · 1.9 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
alias a="clear"
alias ami="ssh -l ec2-user -i ~/.ssh/drg-euw1-cider-development.pem euw1a-web02.dresources.com"
alias amiprod='ssh -l ec2-user -i ~/.ssh/drg-euw1-cider-development.pem 172.20.65.194'
alias bi="bower install"
alias dig='dig +multi'
alias e="$EDITOR"
alias emb="ember build"
alias embp="ember build -prod"
alias emg="ember generate"
alias ems="ember serve"
alias fl="forever list"
alias fsp="forever stop"
alias fuck='eval $(thefuck $(fc -ln -1)); history -r'
alias g=git
alias ga="git add -p"
alias gb="git branch"
alias gc="git commit"
alias gca="git commit --amend"
alias gcb="git checkout -b"
alias gcm="git checkout master"
alias gd="git diff --color-words"
alias gfo="git fetch origin"
alias gfr="gfo && gro"
alias gg="git grep -n --color"
alias gj="grunt jsdoc"
alias gk="git checkout "
alias gl="git lola"
alias gmt="git mergetool"
alias gph="git push"
alias gpi="gpl && ni"
alias gpl="git pull"
alias gpt="git push && git push --tags"
alias gr="grunt"
alias gra="git rebase --abort"
alias grc="git rebase --continue"
alias grd="grunt deploy"
alias grhh="git reset --hard HEAD"
alias gro="git rebase origin/master"
alias grr="grunt release"
alias grs="grunt sass"
alias grt="grunt template-release"
alias gs="grunt sass"
alias gsp="git stash pop"
alias gss="git status"
alias gst="git stash"
alias hman='man --html=browser-pause'
alias l='ls'
alias la='ls -al'
alias ll='ls -lh'
alias ls='ls -G'
alias lt='ls -ltr'
alias ni="npm install"
alias nr="npm run"
alias ns="npm start"
alias nt="npm test"
alias pbe="pebble build && pebble install --emulator basalt"
alias pbi="pebble build && pebble install"
alias ping='ping -n'
alias q="exit"
alias ra="sudo apachectl restart"
alias rsync='rsync -h'
alias sk="ps -aef | grep sass | grep scss | awk '{print \$2;}' | xargs -I {} kill {}"
alias vi="mvim"
alias wgoat='wget'
alias whois='whois -H'
alias xc='xclip -selection clipboard -in'
alias xp='xclip -selection clipboard -out'