-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbash_aliases
executable file
·32 lines (29 loc) · 1.13 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
alias ga="git add"
alias gb="git branch"
alias gc="git commit"
alias gca="git commit -a"
alias gco="git checkout"
alias gd="git diff"
alias gdc="git diff --cached"
alias gs="git status"
alias gps="git push"
alias gpl="git pull --rebase"
alias git-svn="git svn"
alias gsr="git svn rebase"
alias gsd="git svn dcommit"
alias gl="git log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr)%Creset' --abbrev-commit --date=relative"
alias dir=ls
alias ll="ls -al"
alias be="bundle exec"
alias bec='bundle exec cucumber'
alias ber='bundle exec rake'
alias r='rake'
alias log='tail -f log/development.log'
alias work="cd ~/Projects/me/homehelpnow"
alias g='grep -i' #case insensitive grep
alias ducks='du -cks * | sort -rn|head -11' # Lists the size of all the folders$
alias top='top -o cpu'
alias systail='tail -f /var/log/system.log'
alias profileme="history | awk '{print \$2}' | awk 'BEGIN{FS=\"|\"}{print \$1}' | sort | uniq -c | sort -n | tail -n 20 | sort -nr"
alias s="cd /Users/cmaitchison/Projects/github/sodalis"
alias sshaws="ssh -o USER=ubuntu -i ~/.aws/sodalis.pem -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null"