Aliases, ST3
This commit is contained in:
parent
a4c14bc74a
commit
eacc58c335
|
@ -1,5 +1,4 @@
|
||||||
.DS_Store
|
.DS_Store
|
||||||
.bundle
|
.bundle
|
||||||
.rake_tasks
|
.rake_tasks
|
||||||
*.sublime-project
|
*.sublime-*
|
||||||
*.sublime-workspace
|
|
||||||
|
|
|
@ -1,13 +1,20 @@
|
||||||
alias reload!='. ~/.zshrc'
|
alias reload!=". ~/.zshrc"
|
||||||
alias b='bundle exec'
|
alias please="sudo"
|
||||||
alias please='sudo'
|
|
||||||
alias mkbundle='bundle install --path .bundle'
|
# Ruby & Rails
|
||||||
|
alias b="bundle exec"
|
||||||
|
alias mkbundle="bundle install --path .bundle"
|
||||||
|
alias ss="git up && bundle && bundle exec rake db:migrate"
|
||||||
|
alias rc="bundle exec rails c"
|
||||||
|
alias rs="bundle exec rails s"
|
||||||
|
|
||||||
# Git
|
# Git
|
||||||
alias glog="git log --graph --pretty=format:'%Cred%h%Creset %an: %s - %Creset %C(yellow)%d%Creset %Cgreen(%cr)%Creset' --abbrev-commit --date=relative"
|
alias gl="git log --graph --pretty=format:'%Cred%h%Creset %an: %s - %Creset %C(yellow)%d%Creset %Cgreen(%cr)%Creset' --abbrev-commit --date=relative"
|
||||||
alias gc="git commit -m"
|
alias gc="git commit -m"
|
||||||
alias ga="git add -u && git add . && git st"
|
alias ga="git add -u && git add . && git st"
|
||||||
alias gs="git st"
|
alias gs="git st"
|
||||||
|
alias gd="git diff"
|
||||||
|
alias gp="git push"
|
||||||
|
|
||||||
# Services start-ups and shut-downs
|
# Services start-ups and shut-downs
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
export PATH=~/.dotfiles/bin:$PATH
|
export PATH=~/.dotfiles/bin:$PATH
|
||||||
export PATH=~/.apps/tunneler/bin:$PATH
|
export PATH=~/.apps/tunneler/bin:$PATH
|
||||||
export PATH=/Applications/Sublime\ Text\ 2.app/Contents/SharedSupport/bin:$PATH
|
export PATH=/Applications/Sublime\ Text\ 3.app/Contents/SharedSupport/bin:$PATH
|
||||||
|
|
Loading…
Reference in New Issue