Skip to content

Instantly share code, notes, and snippets.

@is8r
Last active October 6, 2015 08:38
Show Gist options
  • Select an option

  • Save is8r/2966306 to your computer and use it in GitHub Desktop.

Select an option

Save is8r/2966306 to your computer and use it in GitHub Desktop.
.bash_profileの便利設定メモ
alias g='git'
alias gi='git init && git add . && git commit -m "first commit"'
alias gc='g add -A && git commit -a'
alias r='rails'
alias rs='rails s'
alias rgs='rails g scaffold'
alias bi="bundle install"
alias be="bundle exec rackup"
alias sq="mysql.server"
alias sqrs='mysql.server start && rails s'
alias cw="compass watch"
alias gr="grunt"
alias gw="grunt watch"
alias mm="middleman"
alias mmb="middleman build"
alias ps="python -m SimpleHTTPServer"
alias refresh="source ~/.bash_profile && source ~/.bashrc && source ~/.zshrc"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment