Last active
October 6, 2015 08:38
-
-
Save is8r/2966306 to your computer and use it in GitHub Desktop.
.bash_profileの便利設定メモ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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