-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.bash_profile
More file actions
96 lines (78 loc) · 2.85 KB
/
.bash_profile
File metadata and controls
96 lines (78 loc) · 2.85 KB
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
ssh-add -K ~/.ssh/id_rsa
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
export PATH="/usr/local/opt/mysql@5.6/bin:$PATH"
export GITAWAREPROMPT=~/git-aware-prompt
source "${GITAWAREPROMPT}/main.sh"
export PS1=" \[\e[93m\] \[\e[94m\]Steve \[\e[97m\]| \[\e[93m\] \W \[\e[97m\]| \[\e[92m\] \$git_branch \[\e[31m\]\$git_dirty \[\e[97m\]| \[\e[94m\] \[\e[97m\] "
shopt -s checkwinsize
export PATH="/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:/Users/stephenbrewer/.rbenv/bin"
if [ -f `brew --prefix`/etc/bash_completion ]; then
. `brew --prefix`/etc/bash_completion
fi
ssh-add -K ~/.ssh/id_rsa
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile" # Load the default .profile
export PATH="/usr/local/opt/mysql@5.6/bin:$PATH"
alias gd='git diff'
alias gs='clear && git status'
alias gc='git commit'
alias an='git commit --amend --no-edit'
alias gp='git pull'
alias gpf='git push --force-with-lease'
alias ga='git add .'
alias gl='git log'
alias glp='git log -p'
alias grm='git rebase -i master'
alias grim='git rebase -i master'
alias gcon='git rebase --continue'
alias gb='git branch'
alias gbd='git branch -d'
alias rserver='bundle exec spring rails s'
alias rsp='echo "IP Address: $(ipconfig getifaddr en0)"; rails s --binding=0.0.0.0'
alias rst='lt --port 3000 --subdomain sbfuturelearn'
alias be='bundle exec'
alias bi='bundle install'
alias dbm='spring rake db:migrate'
alias as='sudo apachectl start'
alias ass='sudo apachectl stop'
alias asr='sudo apachectl restart'
alias hlogs='heroku logs --tail'
alias gpfh='git push -f heroku'
alias dbmh='heroku run rake db:migrate'
alias rspec='spring rspec'
export PATH="/usr/local/sbin:$PATH"
export PATH="/usr/local/bin:$PATH"
eval "$(rbenv init -)"
export EDITOR='subl -w'export PATH="/usr/local/opt/mysql@5.6/bin:$PATH"
export PATH="/usr/local/opt/mysql@5.6/bin:$PATH"
alias gd='git diff'
alias gs='clear && git status'
alias gc='git commit'
alias an='git commit --amend --no-edit'
alias gp='git pull'
alias gpf='git push --force-with-lease'
alias ga='git add .'
alias gl='git log'
alias glp='git log -p'
alias grm='git rebase -i master'
alias grim='git rebase -i master'
alias gcon='git rebase --continue'
alias gb='git branch'
alias gbd='git branch -d'
alias rserver='bundle exec spring rails s'
alias rsp='echo "IP Address: $(ipconfig getifaddr en0)"; rails s --binding=0.0.0.0'
alias rst='lt --port 3000 --subdomain sbfuturelearn'
alias be='bundle exec'
alias bi='bundle install'
alias dbm='spring rake db:migrate'
alias as='sudo apachectl start'
alias ass='sudo apachectl stop'
alias asr='sudo apachectl restart'
alias hlogs='heroku logs --tail'
alias gpfh='git push -f heroku'
alias dbmh='heroku run rake db:migrate'
alias rspec='spring rspec'
export PATH="/usr/local/sbin:$PATH"
eval "$(rbenv init -)"
export PATH="$HOME/.pyenv/bin:$PATH"
eval "$(pyenv init -)"
eval "$(pyenv virtualenv-init -)"