brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
brew install git bash-completion
Configure things:
git config --global user.name "Your Name"
git config --global user.email "you@example.com"
| # 0 is too far from ` ;) | |
| set -g base-index 1 | |
| # Automatically set window title | |
| set-window-option -g automatic-rename on | |
| set-option -g set-titles on | |
| #set -g default-terminal screen-256color | |
| set -g status-keys vi | |
| set -g history-limit 10000 |
| <select name="DropDownTimezone" id="DropDownTimezone"> | |
| <option value="-12.0">(GMT -12:00) Eniwetok, Kwajalein</option> | |
| <option value="-11.0">(GMT -11:00) Midway Island, Samoa</option> | |
| <option value="-10.0">(GMT -10:00) Hawaii</option> | |
| <option value="-9.0">(GMT -9:00) Alaska</option> | |
| <option value="-8.0">(GMT -8:00) Pacific Time (US & Canada)</option> | |
| <option value="-7.0">(GMT -7:00) Mountain Time (US & Canada)</option> | |
| <option value="-6.0">(GMT -6:00) Central Time (US & Canada), Mexico City</option> | |
| <option value="-5.0">(GMT -5:00) Eastern Time (US & Canada), Bogota, Lima</option> | |
| <option value="-4.0">(GMT -4:00) Atlantic Time (Canada), Caracas, La Paz</option> |
| ------------ From Rake Task | |
| namespace :app do | |
| # Checks and ensures task is not run in production. | |
| task :ensure_development_environment => :environment do | |
| if Rails.env.production? | |
| raise "\nI'm sorry, I can't do that.\n(You're asking me to drop your production database.)" | |
| end | |
| end |